Update CityLearn.py
Browse files- CityLearn.py +5 -0
CityLearn.py
CHANGED
@@ -14,6 +14,7 @@ _URLS = {
|
|
14 |
"s_random2": f"{_BASE_URL}/s_random2.pkl",
|
15 |
"s_random3": f"{_BASE_URL}/s_random3.pkl",
|
16 |
"s_random4": f"{_BASE_URL}/s_random4.pkl",
|
|
|
17 |
"f_230": f"{_BASE_URL}/f_230x5x38.pkl",
|
18 |
"f_50": f"{_BASE_URL}/f_50x5x1750.pkl",
|
19 |
"f_24": f"{_BASE_URL}/f_24x5x364.pkl",
|
@@ -64,6 +65,10 @@ class DecisionTransformerCityLearnDataset(datasets.GeneratorBasedBuilder):
|
|
64 |
name="s_random4",
|
65 |
description="Random environment interactions in CityLearn environment. Data size 437950x1",
|
66 |
),
|
|
|
|
|
|
|
|
|
67 |
datasets.BuilderConfig(
|
68 |
name="f_230",
|
69 |
description="Data sampled from an expert policy in CityLearn environment. Sequence length = 230, Buildings = 5, Episodes = 1 ",
|
|
|
14 |
"s_random2": f"{_BASE_URL}/s_random2.pkl",
|
15 |
"s_random3": f"{_BASE_URL}/s_random3.pkl",
|
16 |
"s_random4": f"{_BASE_URL}/s_random4.pkl",
|
17 |
+
"random_230": f"{_BASE_URL}/random_230x5x38.pkl",
|
18 |
"f_230": f"{_BASE_URL}/f_230x5x38.pkl",
|
19 |
"f_50": f"{_BASE_URL}/f_50x5x1750.pkl",
|
20 |
"f_24": f"{_BASE_URL}/f_24x5x364.pkl",
|
|
|
65 |
name="s_random4",
|
66 |
description="Random environment interactions in CityLearn environment. Data size 437950x1",
|
67 |
),
|
68 |
+
datasets.BuilderConfig(
|
69 |
+
name="random_230",
|
70 |
+
description="Random environment interactions in CityLearn environment. Sequence length = 230, Buildings = 5, Episodes = 1 ",
|
71 |
+
),
|
72 |
datasets.BuilderConfig(
|
73 |
name="f_230",
|
74 |
description="Data sampled from an expert policy in CityLearn environment. Sequence length = 230, Buildings = 5, Episodes = 1 ",
|