Update imagenette.py
Browse files- imagenette.py +3 -2
imagenette.py
CHANGED
@@ -90,8 +90,9 @@ class Imagenette(datasets.GeneratorBasedBuilder):
|
|
90 |
citation=_CITATION,
|
91 |
task_templates=[
|
92 |
ImageClassification(
|
93 |
-
image_column="image_file_path",
|
94 |
-
|
|
|
95 |
],
|
96 |
)
|
97 |
|
|
|
90 |
citation=_CITATION,
|
91 |
task_templates=[
|
92 |
ImageClassification(
|
93 |
+
image_column="image_file_path",
|
94 |
+
label_column="labels",
|
95 |
+
)
|
96 |
],
|
97 |
)
|
98 |
|