Datasets:
Tom Aarsen
commited on
Commit
•
fca946c
1
Parent(s):
7504580
Remove upper call
Browse files- MultiCoNER.py +3 -3
MultiCoNER.py
CHANGED
@@ -165,9 +165,9 @@ class MultiCoNER(datasets.GeneratorBasedBuilder):
|
|
165 |
def _split_generators(self, dl_manager):
|
166 |
"""Returns SplitGenerators."""
|
167 |
urls_to_download = {
|
168 |
-
"train": f"{subset_to_dir[self.config.name]
|
169 |
-
"dev": f"{subset_to_dir[self.config.name]
|
170 |
-
"test": f"{subset_to_dir[self.config.name]
|
171 |
}
|
172 |
downloaded_files = dl_manager.download_and_extract(urls_to_download)
|
173 |
|
|
|
165 |
def _split_generators(self, dl_manager):
|
166 |
"""Returns SplitGenerators."""
|
167 |
urls_to_download = {
|
168 |
+
"train": f"{subset_to_dir[self.config.name]}/{self.config.name}_train.conll",
|
169 |
+
"dev": f"{subset_to_dir[self.config.name]}/{self.config.name}_dev.conll",
|
170 |
+
"test": f"{subset_to_dir[self.config.name]}/{self.config.name}_test.conll",
|
171 |
}
|
172 |
downloaded_files = dl_manager.download_and_extract(urls_to_download)
|
173 |
|