Datasets:
Upload hypo.py
Browse files
hypo.py
CHANGED
@@ -122,7 +122,7 @@ class Hypo(datasets.GeneratorBasedBuilder):
|
|
122 |
]
|
123 |
|
124 |
def _generate_examples(self, filepath: str):
|
125 |
-
data = pandas.read_csv(filepath
|
126 |
data = self.preprocess(data)
|
127 |
|
128 |
for row_id, row in data.iterrows():
|
|
|
122 |
]
|
123 |
|
124 |
def _generate_examples(self, filepath: str):
|
125 |
+
data = pandas.read_csv(filepath)
|
126 |
data = self.preprocess(data)
|
127 |
|
128 |
for row_id, row in data.iterrows():
|