Datasets:
Tasks:
Image Classification
Modalities:
Image
Formats:
parquet
Sub-tasks:
multi-class-image-classification
Languages:
English
Size:
10K - 100K
License:
Commit
•
ebfc265
1
Parent(s):
dd6e9ac
Use `tuple` instead of `list` in `gen_kwargs` to avoid `IterableDataset.shuffle` error (#3)
Browse files- Use `tuple` instead of `list` in `gen_kwargs` to avoid `IterableDataset.shuffle` error (a34bb021ba6fe55b56dd277816f081bab83fab05)
Co-authored-by: Rohan Fletcher <rohfle@users.noreply.huggingface.co>
mnist.py
CHANGED
@@ -87,14 +87,14 @@ class MNIST(datasets.GeneratorBasedBuilder):
|
|
87 |
datasets.SplitGenerator(
|
88 |
name=datasets.Split.TRAIN,
|
89 |
gen_kwargs={
|
90 |
-
"filepath":
|
91 |
"split": "train",
|
92 |
},
|
93 |
),
|
94 |
datasets.SplitGenerator(
|
95 |
name=datasets.Split.TEST,
|
96 |
gen_kwargs={
|
97 |
-
"filepath":
|
98 |
"split": "test",
|
99 |
},
|
100 |
),
|
|
|
87 |
datasets.SplitGenerator(
|
88 |
name=datasets.Split.TRAIN,
|
89 |
gen_kwargs={
|
90 |
+
"filepath": (downloaded_files["train_images"], downloaded_files["train_labels"]),
|
91 |
"split": "train",
|
92 |
},
|
93 |
),
|
94 |
datasets.SplitGenerator(
|
95 |
name=datasets.Split.TEST,
|
96 |
gen_kwargs={
|
97 |
+
"filepath": (downloaded_files["test_images"], downloaded_files["test_labels"]),
|
98 |
"split": "test",
|
99 |
},
|
100 |
),
|