Datasets:
Tasks:
Image Classification
Sub-tasks:
multi-class-classification
Languages:
English
Size:
10K<n<100K
License:
Francisco Castillo
commited on
Commit
·
9fe0261
1
Parent(s):
4444c16
wip
Browse files
.gitattributes
CHANGED
@@ -38,3 +38,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
38 |
production.csv filter=lfs diff=lfs merge=lfs -text
|
39 |
training.csv filter=lfs diff=lfs merge=lfs -text
|
40 |
validation.csv filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
38 |
production.csv filter=lfs diff=lfs merge=lfs -text
|
39 |
training.csv filter=lfs diff=lfs merge=lfs -text
|
40 |
validation.csv filter=lfs diff=lfs merge=lfs -text
|
41 |
+
production.hdf5 filter=lfs diff=lfs merge=lfs -text
|
42 |
+
training.hdf5 filter=lfs diff=lfs merge=lfs -text
|
43 |
+
validation.hdf5 filter=lfs diff=lfs merge=lfs -text
|
fashion_mnist_label_drift.py
CHANGED
@@ -158,6 +158,7 @@ class FashionMNISTLabelDrift(datasets.GeneratorBasedBuilder):
|
|
158 |
def _generate_examples(self, filepath):
|
159 |
# This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
|
160 |
# The `key` is for legacy reasons (tfds) and is not important in itself, but must be unique for each example.
|
|
|
161 |
with open(filepath) as csv_file:
|
162 |
csv_reader = csv.reader(csv_file, delimiter='\t')
|
163 |
for id_, row in enumerate(csv_reader):
|
|
|
158 |
def _generate_examples(self, filepath):
|
159 |
# This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
|
160 |
# The `key` is for legacy reasons (tfds) and is not important in itself, but must be unique for each example.
|
161 |
+
|
162 |
with open(filepath) as csv_file:
|
163 |
csv_reader = csv.reader(csv_file, delimiter='\t')
|
164 |
for id_, row in enumerate(csv_reader):
|
production.csv → production.hdf5
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:990ef0d51410316106999a498f5211df0d4a186af8309c3900ad6102d31f4370
|
3 |
+
size 33619368
|
training.csv → training.hdf5
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfbe60075aa895f1628c6bc4481ca9f24fbc0d5ae982f51eae8d433ed9c08ca5
|
3 |
+
size 4322288
|
validation.csv → validation.hdf5
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fc58e99f90b21effaeef2d54a8616b36ebe321bb9a05ec4a39fe09328760ffb3
|
3 |
+
size 1879544
|