Commit
•
b7c327e
1
Parent(s):
7055732
Do not try to extract non-compressed data files
Browse files
fashion_mnist_corrupted.py
CHANGED
@@ -89,7 +89,7 @@ class FashionMnistCorrupted(datasets.GeneratorBasedBuilder):
|
|
89 |
urls_to_download = {
|
90 |
key: _URL + fname for key, fname in _URLS.items()
|
91 |
}
|
92 |
-
downloaded_files = dl_manager.
|
93 |
|
94 |
return [
|
95 |
datasets.SplitGenerator(
|
|
|
89 |
urls_to_download = {
|
90 |
key: _URL + fname for key, fname in _URLS.items()
|
91 |
}
|
92 |
+
downloaded_files = dl_manager.download(urls_to_download)
|
93 |
|
94 |
return [
|
95 |
datasets.SplitGenerator(
|