Skip to content

Commit

Permalink
fix broken zip directory approach
Browse files Browse the repository at this point in the history
  • Loading branch information
davebulaval committed May 18, 2023
1 parent 1c877c1 commit 09b9ef4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RISCBAC.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def _split_generators(self, dl_manager):
datasets.SplitGenerator(
name="full_en",
gen_kwargs={
"filepath": os.path.join(data_dir, "en", "en.jsonl"),
"filepath": os.path.join(data_dir, "en.jsonl"),
},
)
]
Expand All @@ -101,7 +101,7 @@ def _split_generators(self, dl_manager):
datasets.SplitGenerator(
name="full_fr",
gen_kwargs={
"filepath": os.path.join(data_dir, "fr", "fr.jsonl"),
"filepath": os.path.join(data_dir, "fr.jsonl"),
},
),
]
Expand Down

0 comments on commit 09b9ef4

Please sign in to comment.