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 |
"fr_24": f"{_BASE_URL}/fr_24x5x364.pkl",
|
| 19 |
"fn_24": f"{_BASE_URL}/fn_24x5x3649.pkl",
|
| 20 |
"rb_24": f"{_BASE_URL}/rb_24x5x364.pkl",
|
|
@@ -65,6 +66,10 @@ class DecisionTransformerCityLearnDataset(datasets.GeneratorBasedBuilder):
|
|
| 65 |
name="f_50",
|
| 66 |
description="Data sampled from an expert policy in CityLearn environment. Sequence length = 50, Buildings = 5, Episodes = 10 ",
|
| 67 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
datasets.BuilderConfig(
|
| 69 |
name="fr_24",
|
| 70 |
description="Data sampled from an expert policy in CityLearn environment. Used the new reward function. Sequence length = 24, Buildings = 5, Episodes = 1 ",
|
|
|
|
| 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",
|
| 20 |
"fn_24": f"{_BASE_URL}/fn_24x5x3649.pkl",
|
| 21 |
"rb_24": f"{_BASE_URL}/rb_24x5x364.pkl",
|
|
|
|
| 66 |
name="f_50",
|
| 67 |
description="Data sampled from an expert policy in CityLearn environment. Sequence length = 50, Buildings = 5, Episodes = 10 ",
|
| 68 |
),
|
| 69 |
+
datasets.BuilderConfig(
|
| 70 |
+
name="f_24",
|
| 71 |
+
description="Data sampled from an expert policy in CityLearn environment. Sequence length = 24, Buildings = 5, Episodes = 1 ",
|
| 72 |
+
),
|
| 73 |
datasets.BuilderConfig(
|
| 74 |
name="fr_24",
|
| 75 |
description="Data sampled from an expert policy in CityLearn environment. Used the new reward function. Sequence length = 24, Buildings = 5, Episodes = 1 ",
|