Datasets:
Tasks:
Image Classification
Sub-tasks:
multi-class-image-classification
Languages:
English
Size:
1K<n<10K
License:
fix typo
Browse files- rock-glacier-dataset.py +1 -1
rock-glacier-dataset.py
CHANGED
@@ -165,7 +165,7 @@ class RockGlacierDataset(datasets.GeneratorBasedBuilder):
|
|
165 |
if dir_name == "glaciar" and file_name.endswith(".png"):
|
166 |
yield i, {
|
167 |
"image": path,
|
168 |
-
"masks": path.replace(dir_name, "masks")
|
169 |
"path": "/".join(path.split("/")[-3:]),
|
170 |
}
|
171 |
|
|
|
165 |
if dir_name == "glaciar" and file_name.endswith(".png"):
|
166 |
yield i, {
|
167 |
"image": path,
|
168 |
+
"masks": path.replace(dir_name, "masks"),
|
169 |
"path": "/".join(path.split("/")[-3:]),
|
170 |
}
|
171 |
|