chore
Browse files- en-ja-align.py +1 -1
en-ja-align.py
CHANGED
@@ -181,5 +181,5 @@ class EnJaAlignDataset(ds.GeneratorBasedBuilder):
|
|
181 |
and len(row["en"]) > 0
|
182 |
and len(row["ja"]) > 0
|
183 |
):
|
184 |
-
yield idx, row
|
185 |
idx += 1
|
|
|
181 |
and len(row["en"]) > 0
|
182 |
and len(row["ja"]) > 0
|
183 |
):
|
184 |
+
yield f"{path.name}/{idx}", row
|
185 |
idx += 1
|