Update script.py
Browse files
script.py
CHANGED
@@ -20,8 +20,8 @@ from preprocess import preprocess
|
|
20 |
|
21 |
|
22 |
# load the dataset. dataset will be automatically downloaded to /tmp/data during evaluation
|
23 |
-
|
24 |
-
dataset_remote = load_dataset(
|
25 |
|
26 |
|
27 |
# load your model
|
|
|
20 |
|
21 |
|
22 |
# load the dataset. dataset will be automatically downloaded to /tmp/data during evaluation
|
23 |
+
DATASET_PATH = "/tmp/data"
|
24 |
+
dataset_remote = load_dataset(DATASET_PATH,split = "test",streaming = True)
|
25 |
|
26 |
|
27 |
# load your model
|