王子傲
commited on
Commit
·
c8be980
1
Parent(s):
4b791bb
fix
Browse files- TimeTravel.py +5 -5
TimeTravel.py
CHANGED
|
@@ -49,11 +49,11 @@ _LICENSE = ""
|
|
| 49 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
| 50 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
| 51 |
_URLS = {
|
| 52 |
-
"supervised_large": "
|
| 53 |
-
"supervised_small": "
|
| 54 |
-
"unsupervised": "
|
| 55 |
-
"dev": "
|
| 56 |
-
"test": "
|
| 57 |
}
|
| 58 |
|
| 59 |
|
|
|
|
| 49 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
| 50 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
| 51 |
_URLS = {
|
| 52 |
+
"supervised_large": "train_supervised_large.json",
|
| 53 |
+
"supervised_small": "train_supervised_small.json",
|
| 54 |
+
"unsupervised": "unsupervised.json",
|
| 55 |
+
"dev": "dev_data.json",
|
| 56 |
+
"test": "test_data.json"
|
| 57 |
}
|
| 58 |
|
| 59 |
|