Datasets:
Update isolet.py
Browse files
isolet.py
CHANGED
@@ -63,8 +63,8 @@ class Isolet(datasets.GeneratorBasedBuilder):
|
|
63 |
]
|
64 |
|
65 |
def _generate_examples(self, filepath: str):
|
66 |
-
print(filepath)
|
67 |
-
data = pandas.read_csv(filepath, header=None)
|
68 |
data = self.preprocess(data, config=self.config.name)
|
69 |
|
70 |
for row_id, row in data.iterrows():
|
|
|
63 |
]
|
64 |
|
65 |
def _generate_examples(self, filepath: str):
|
66 |
+
print(filepath + "/isolet1+2+3+4.data")
|
67 |
+
data = pandas.read_csv(filepath + "/isolet1+2+3+4.data", header=None)
|
68 |
data = self.preprocess(data, config=self.config.name)
|
69 |
|
70 |
for row_id, row in data.iterrows():
|