Create empty split generator
Browse files- 3d-brain-mri.py +1 -1
3d-brain-mri.py
CHANGED
@@ -99,7 +99,7 @@ class BrainMRI(datasets.GeneratorBasedBuilder):
|
|
99 |
# By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive
|
100 |
urls = _URLS[self.config.name]
|
101 |
data_dir = dl_manager.download_and_extract(urls)
|
102 |
-
return
|
103 |
|
104 |
# method parameters are unpacked from `gen_kwargs` as given in `_split_generators`
|
105 |
def _generate_examples(self, filepath, split):
|
|
|
99 |
# By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive
|
100 |
urls = _URLS[self.config.name]
|
101 |
data_dir = dl_manager.download_and_extract(urls)
|
102 |
+
return []
|
103 |
|
104 |
# method parameters are unpacked from `gen_kwargs` as given in `_split_generators`
|
105 |
def _generate_examples(self, filepath, split):
|