Francisco Castillo commited on
Commit
bceaaea
1 Parent(s): 5006c5a
Files changed (1) hide show
  1. fashion_mnist_label_drift.py +4 -4
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 csv
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.csv",
61
- "validation": _URL + "validation.csv",
62
- "production": _URL + "production.csv",
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