Update CityLearn.py
Browse files- CityLearn.py +18 -3
CityLearn.py
CHANGED
@@ -8,6 +8,9 @@ _DESCRIPTION = """The dataset consists of tuples of (observations, actions, rewa
|
|
8 |
_BASE_URL = "https://huggingface.co/datasets/TobiTob/CityLearn/resolve/main"
|
9 |
_URLS = {
|
10 |
"s_test": f"{_BASE_URL}/s_test.pkl",
|
|
|
|
|
|
|
11 |
"s_8759x5": f"{_BASE_URL}/s_8759x5.pkl",
|
12 |
"halfcheetah-medium-replay-v2": f"{_BASE_URL}/test.pkl",
|
13 |
}
|
@@ -20,15 +23,27 @@ class DecisionTransformerCityLearnDataset(datasets.GeneratorBasedBuilder):
|
|
20 |
BUILDER_CONFIGS = [
|
21 |
datasets.BuilderConfig(
|
22 |
name="s_test",
|
23 |
-
description="Test Data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
),
|
25 |
datasets.BuilderConfig(
|
26 |
name="s_8759x5",
|
27 |
-
description="
|
28 |
),
|
29 |
datasets.BuilderConfig(
|
30 |
name="halfcheetah-medium-replay-v2",
|
31 |
-
description="Test Data
|
32 |
),
|
33 |
]
|
34 |
|
|
|
8 |
_BASE_URL = "https://huggingface.co/datasets/TobiTob/CityLearn/resolve/main"
|
9 |
_URLS = {
|
10 |
"s_test": f"{_BASE_URL}/s_test.pkl",
|
11 |
+
"s_test2": f"{_BASE_URL}/s_test2.pkl",
|
12 |
+
"s_test3": f"{_BASE_URL}/s_test3.pkl",
|
13 |
+
"s_test4": f"{_BASE_URL}/s_test4.pkl",
|
14 |
"s_8759x5": f"{_BASE_URL}/s_8759x5.pkl",
|
15 |
"halfcheetah-medium-replay-v2": f"{_BASE_URL}/test.pkl",
|
16 |
}
|
|
|
23 |
BUILDER_CONFIGS = [
|
24 |
datasets.BuilderConfig(
|
25 |
name="s_test",
|
26 |
+
description="Test Data size 10x8",
|
27 |
+
),
|
28 |
+
datasets.BuilderConfig(
|
29 |
+
name="s_test2",
|
30 |
+
description="Test Data size 10x16",
|
31 |
+
),
|
32 |
+
datasets.BuilderConfig(
|
33 |
+
name="s_test3",
|
34 |
+
description="Test Data size 100x16",
|
35 |
+
),
|
36 |
+
datasets.BuilderConfig(
|
37 |
+
name="s_test4",
|
38 |
+
description="Test Data size 10x1000",
|
39 |
),
|
40 |
datasets.BuilderConfig(
|
41 |
name="s_8759x5",
|
42 |
+
description="Data sampled from an expert policy in CityLearn environment",
|
43 |
),
|
44 |
datasets.BuilderConfig(
|
45 |
name="halfcheetah-medium-replay-v2",
|
46 |
+
description="Test Data",
|
47 |
),
|
48 |
]
|
49 |
|