Datasets:
Tasks:
Image Classification
Sub-tasks:
multi-class-classification
Languages:
English
Size:
10K<n<100K
License:
Francisco Castillo
commited on
Commit
·
bceaaea
1
Parent(s):
5006c5a
wip
Browse files
fashion_mnist_label_drift.py
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
"""IMDb movie revies dataset mixed with Trip Advisor Hotel Reviews to simulate drift accross time."""
|
17 |
|
18 |
|
19 |
-
import
|
20 |
import os
|
21 |
import pandas as pd
|
22 |
import datasets
|
@@ -57,9 +57,9 @@ _LICENSE = ""
|
|
57 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
58 |
_URL = "https://huggingface.co/datasets/arize-ai/fashion_mnist_label_drift/resolve/main/"
|
59 |
_URLS = {
|
60 |
-
"training": _URL + "training.
|
61 |
-
"validation": _URL + "validation.
|
62 |
-
"production": _URL + "production.
|
63 |
}
|
64 |
|
65 |
|
|
|
16 |
"""IMDb movie revies dataset mixed with Trip Advisor Hotel Reviews to simulate drift accross time."""
|
17 |
|
18 |
|
19 |
+
import pickel
|
20 |
import os
|
21 |
import pandas as pd
|
22 |
import datasets
|
|
|
57 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
58 |
_URL = "https://huggingface.co/datasets/arize-ai/fashion_mnist_label_drift/resolve/main/"
|
59 |
_URLS = {
|
60 |
+
"training": _URL + "training.pkl",
|
61 |
+
"validation": _URL + "validation.pkl",
|
62 |
+
"production": _URL + "production.pkl",
|
63 |
}
|
64 |
|
65 |
|