Commit
·
63b1eae
1
Parent(s):
070350d
Fixed the argument in generate examples
Browse files- malayalam_news.py +1 -1
malayalam_news.py
CHANGED
@@ -90,7 +90,7 @@ class MalayalamNews(datasets.GeneratorBasedBuilder):
|
|
90 |
)
|
91 |
]
|
92 |
|
93 |
-
def _generate_examples(self, filepath):
|
94 |
"""Generate Malayalam News examples."""
|
95 |
with open(filepath, encoding="utf-8") as csv_file:
|
96 |
csv_reader = csv.reader(
|
|
|
90 |
)
|
91 |
]
|
92 |
|
93 |
+
def _generate_examples(self, filepath, split):
|
94 |
"""Generate Malayalam News examples."""
|
95 |
with open(filepath, encoding="utf-8") as csv_file:
|
96 |
csv_reader = csv.reader(
|