Datasets:
Update ViHOS.py
Browse files
ViHOS.py
CHANGED
|
@@ -65,7 +65,7 @@ class ViHOS(datasets.GeneratorBasedBuilder):
|
|
| 65 |
def _generate_examples(self, filepath, split):
|
| 66 |
# colnames=['id', 'Content', 'Span ids']
|
| 67 |
|
| 68 |
-
data = load_csv(filepath)
|
| 69 |
yield data
|
| 70 |
|
| 71 |
# with open(filepath, 'r', encoding="utf-8") as f:
|
|
|
|
| 65 |
def _generate_examples(self, filepath, split):
|
| 66 |
# colnames=['id', 'Content', 'Span ids']
|
| 67 |
|
| 68 |
+
data = self.load_csv(filepath)
|
| 69 |
yield data
|
| 70 |
|
| 71 |
# with open(filepath, 'r', encoding="utf-8") as f:
|