Datasets:
Update ViHOS.py
Browse files
ViHOS.py
CHANGED
@@ -44,6 +44,6 @@ class ViHOS(datasets.GeneratorBasedBuilder):
|
|
44 |
)
|
45 |
]
|
46 |
|
47 |
-
def _generate_examples(self, filepath):
|
48 |
data = pd.read_csv(filepath)
|
49 |
yield data.iloc[:, 0], dataframe.iloc[:, 1], dataframe.iloc[:, 2]
|
|
|
44 |
)
|
45 |
]
|
46 |
|
47 |
+
def _generate_examples(self, filepath, split):
|
48 |
data = pd.read_csv(filepath)
|
49 |
yield data.iloc[:, 0], dataframe.iloc[:, 1], dataframe.iloc[:, 2]
|