Update xtd_11.py
Browse files
xtd_11.py
CHANGED
@@ -68,5 +68,5 @@ class XTD_11(datasets.GeneratorBasedBuilder):
|
|
68 |
# Load data from a single file
|
69 |
with open(filepath, encoding="utf-8") as f:
|
70 |
for row in f:
|
71 |
-
yield
|
72 |
id_ +=1
|
|
|
68 |
# Load data from a single file
|
69 |
with open(filepath, encoding="utf-8") as f:
|
70 |
for row in f:
|
71 |
+
yield id_, row
|
72 |
id_ +=1
|