Commit ·
cca18ed
1
Parent(s): 4e4d25a
fix download
Browse files
ipquiz.py
CHANGED
|
@@ -119,7 +119,7 @@ class IPQuizDataset(datasets.GeneratorBasedBuilder):
|
|
| 119 |
# By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive
|
| 120 |
urls = _URLS[self.config.name]
|
| 121 |
data_dir = dl_manager.download(urls)
|
| 122 |
-
print(data_dir)
|
| 123 |
return [
|
| 124 |
datasets.SplitGenerator(
|
| 125 |
name=datasets.Split.TEST,
|
|
|
|
| 119 |
# By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive
|
| 120 |
urls = _URLS[self.config.name]
|
| 121 |
data_dir = dl_manager.download(urls)
|
| 122 |
+
print(urls, data_dir)
|
| 123 |
return [
|
| 124 |
datasets.SplitGenerator(
|
| 125 |
name=datasets.Split.TEST,
|