Update rerelem.py
Browse files- rerelem.py +2 -1
rerelem.py
CHANGED
|
@@ -59,4 +59,5 @@ class ReRelEm(datasets.GeneratorBasedBuilder):
|
|
| 59 |
def _generate_examples(self, filepath):
|
| 60 |
records = pd.read_csv(filepath).to_dict("records")
|
| 61 |
for idx, row in enumerate(records):
|
| 62 |
-
yield idx, row
|
|
|
|
|
|
| 59 |
def _generate_examples(self, filepath):
|
| 60 |
records = pd.read_csv(filepath).to_dict("records")
|
| 61 |
for idx, row in enumerate(records):
|
| 62 |
+
yield idx, row
|
| 63 |
+
|