Datasets:
Upload splice.py
Browse files
splice.py
CHANGED
|
@@ -321,7 +321,7 @@ class Splice(datasets.GeneratorBasedBuilder):
|
|
| 321 |
|
| 322 |
def _generate_examples(self, filepath: str):
|
| 323 |
data = pandas.read_csv(filepath)
|
| 324 |
-
data = self.preprocess(data
|
| 325 |
|
| 326 |
for row_id, row in data.iterrows():
|
| 327 |
data_row = dict(row)
|
|
|
|
| 321 |
|
| 322 |
def _generate_examples(self, filepath: str):
|
| 323 |
data = pandas.read_csv(filepath)
|
| 324 |
+
data = self.preprocess(data)
|
| 325 |
|
| 326 |
for row_id, row in data.iterrows():
|
| 327 |
data_row = dict(row)
|