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_50": f"{_BASE_URL}/f_50x5x1750.pkl",
|
18 |
"f_24": f"{_BASE_URL}/f_24x5x364.pkl",
|
19 |
"fr_24": f"{_BASE_URL}/fr_24x5x364.pkl",
|
@@ -62,6 +63,10 @@ class DecisionTransformerCityLearnDataset(datasets.GeneratorBasedBuilder):
|
|
62 |
name="s_random4",
|
63 |
description="Random environment interactions in CityLearn environment. Data size 437950x1",
|
64 |
),
|
|
|
|
|
|
|
|
|
65 |
datasets.BuilderConfig(
|
66 |
name="f_50",
|
67 |
description="Data sampled from an expert policy in CityLearn environment. Sequence length = 50, Buildings = 5, Episodes = 10 ",
|
|
|
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",
|
20 |
"fr_24": f"{_BASE_URL}/fr_24x5x364.pkl",
|
|
|
63 |
name="s_random4",
|
64 |
description="Random environment interactions in CityLearn environment. Data size 437950x1",
|
65 |
),
|
66 |
+
datasets.BuilderConfig(
|
67 |
+
name="f_230",
|
68 |
+
description="Data sampled from an expert policy in CityLearn environment. Sequence length = 230, Buildings = 5, Episodes = 1 ",
|
69 |
+
),
|
70 |
datasets.BuilderConfig(
|
71 |
name="f_50",
|
72 |
description="Data sampled from an expert policy in CityLearn environment. Sequence length = 50, Buildings = 5, Episodes = 10 ",
|