Update CityLearn.py
Browse files- CityLearn.py +4 -4
CityLearn.py
CHANGED
@@ -12,13 +12,13 @@ This dataset is used to train a decision Transformer for the CityLearn 2022 envi
|
|
12 |
_BASE_URL = "https://huggingface.co/datasets/TobiTob/CityLearn"
|
13 |
_URLS = {
|
14 |
"sequences": f"{_BASE_URL}/sequences.pkl",
|
15 |
-
"
|
16 |
}
|
17 |
|
18 |
|
19 |
class DecisionTransformerGymDataset(datasets.GeneratorBasedBuilder):
|
20 |
"""The dataset comprises of tuples of (Observations, Actions, Rewards, Dones) sampled
|
21 |
-
by an expert policy for various continuous control tasks
|
22 |
|
23 |
VERSION = datasets.Version("1.1.0")
|
24 |
|
@@ -40,9 +40,9 @@ class DecisionTransformerGymDataset(datasets.GeneratorBasedBuilder):
|
|
40 |
description="Test Data sampled from an expert policy in CityLearn environment",
|
41 |
),
|
42 |
datasets.BuilderConfig(
|
43 |
-
name="
|
44 |
version=VERSION,
|
45 |
-
description="Data sampled from an
|
46 |
),
|
47 |
]
|
48 |
|
|
|
12 |
_BASE_URL = "https://huggingface.co/datasets/TobiTob/CityLearn"
|
13 |
_URLS = {
|
14 |
"sequences": f"{_BASE_URL}/sequences.pkl",
|
15 |
+
"sequences2": f"{_BASE_URL}/sequences.pkl",
|
16 |
}
|
17 |
|
18 |
|
19 |
class DecisionTransformerGymDataset(datasets.GeneratorBasedBuilder):
|
20 |
"""The dataset comprises of tuples of (Observations, Actions, Rewards, Dones) sampled
|
21 |
+
by an expert policy for various continuous control tasks"""
|
22 |
|
23 |
VERSION = datasets.Version("1.1.0")
|
24 |
|
|
|
40 |
description="Test Data sampled from an expert policy in CityLearn environment",
|
41 |
),
|
42 |
datasets.BuilderConfig(
|
43 |
+
name="sequences2",
|
44 |
version=VERSION,
|
45 |
+
description="Test Data sampled from an expert policy in CityLearn environment",
|
46 |
),
|
47 |
]
|
48 |
|