Update CityLearn.py
Browse files- CityLearn.py +3 -8
CityLearn.py
CHANGED
|
@@ -13,17 +13,12 @@ _LICENSE = "Apache-2.0"
|
|
| 13 |
|
| 14 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
| 15 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
| 16 |
-
_BASE_URL = "https://huggingface.co/datasets/
|
| 17 |
_URLS = {
|
| 18 |
"halfcheetah-expert-v2": f"{_BASE_URL}/halfcheetah-expert-v2.pkl",
|
| 19 |
"halfcheetah-medium-replay-v2": f"{_BASE_URL}/halfcheetah-medium-replay-v2.pkl",
|
| 20 |
-
"
|
| 21 |
-
"
|
| 22 |
-
"hopper-medium-replay-v2": f"{_BASE_URL}/hopper-medium-replay-v2.pkl",
|
| 23 |
-
"hopper-medium-v2": f"{_BASE_URL}/hopper-medium-v2.pkl",
|
| 24 |
-
"walker2d-expert-v2": f"{_BASE_URL}/walker2d-expert-v2.pkl",
|
| 25 |
-
"walker2d-medium-replay-v2": f"{_BASE_URL}/walker2d-medium-replay-v2.pkl",
|
| 26 |
-
"walker2d-medium-v2": f"{_BASE_URL}/walker2d-medium-v2.pkl",
|
| 27 |
}
|
| 28 |
|
| 29 |
|
|
|
|
| 13 |
|
| 14 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
| 15 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
| 16 |
+
_BASE_URL = "https://huggingface.co/datasets/TobiTob/CityLearn/resolve/main"
|
| 17 |
_URLS = {
|
| 18 |
"halfcheetah-expert-v2": f"{_BASE_URL}/halfcheetah-expert-v2.pkl",
|
| 19 |
"halfcheetah-medium-replay-v2": f"{_BASE_URL}/halfcheetah-medium-replay-v2.pkl",
|
| 20 |
+
"test": f"{_BASE_URL}/test.pkl",
|
| 21 |
+
"sequences": f"{_BASE_URL}/sequences.pkl",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
}
|
| 23 |
|
| 24 |
|