Datasets:
Tasks:
Image Classification
Sub-tasks:
multi-class-classification
Languages:
English
Size:
10K<n<100K
License:
Francisco Castillo
commited on
Commit
•
b1fb6ef
1
Parent(s):
1154fa3
wip
Browse files
fashion_mnist_label_drift.py
CHANGED
@@ -162,7 +162,7 @@ class FashionMNISTLabelDrift(datasets.GeneratorBasedBuilder):
|
|
162 |
prediction_ts=data['prediction_ts']
|
163 |
images=data['image']
|
164 |
labels=data['label']
|
165 |
-
print(type(data['label'][0]))
|
166 |
for idx, _ in enumerate(images):
|
167 |
yield idx, {
|
168 |
"prediction_ts":prediction_ts[idx],
|
|
|
162 |
prediction_ts=data['prediction_ts']
|
163 |
images=data['image']
|
164 |
labels=data['label']
|
165 |
+
print(type(int(data['label'][0])))
|
166 |
for idx, _ in enumerate(images):
|
167 |
yield idx, {
|
168 |
"prediction_ts":prediction_ts[idx],
|