Update CityLearn.py
Browse files- CityLearn.py +5 -0
CityLearn.py
CHANGED
@@ -15,6 +15,7 @@ _URLS = {
|
|
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 |
}
|
19 |
|
20 |
|
@@ -55,6 +56,10 @@ class DecisionTransformerCityLearnDataset(datasets.GeneratorBasedBuilder):
|
|
55 |
name="f_50",
|
56 |
description="Data sampled from an expert policy in CityLearn environment. Sequence length = 50, Buildings = 5, Episodes = 10 ",
|
57 |
),
|
|
|
|
|
|
|
|
|
58 |
]
|
59 |
|
60 |
def _info(self):
|
|
|
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 |
+
"fr_24": f"{_BASE_URL}/fr_24x5x364.pkl",
|
19 |
}
|
20 |
|
21 |
|
|
|
56 |
name="f_50",
|
57 |
description="Data sampled from an expert policy in CityLearn environment. Sequence length = 50, Buildings = 5, Episodes = 10 ",
|
58 |
),
|
59 |
+
datasets.BuilderConfig(
|
60 |
+
name="fr_24",
|
61 |
+
description="Data sampled from an expert policy in CityLearn environment. Used the new reward function. Sequence length = 24, Buildings = 5, Episodes = 1 ",
|
62 |
+
),
|
63 |
]
|
64 |
|
65 |
def _info(self):
|