Update CityLearn.py
Browse files- CityLearn.py +5 -0
CityLearn.py
CHANGED
@@ -9,6 +9,7 @@ _BASE_URL = "https://huggingface.co/datasets/TobiTob/CityLearn/resolve/main"
|
|
9 |
_URLS = {
|
10 |
"f_230": f"{_BASE_URL}/f_230x5x38.pkl",
|
11 |
"rb_230": f"{_BASE_URL}/rb_230x5x38.pkl",
|
|
|
12 |
}
|
13 |
|
14 |
|
@@ -25,6 +26,10 @@ class DecisionTransformerCityLearnDataset(datasets.GeneratorBasedBuilder):
|
|
25 |
name="rb_230",
|
26 |
description="Data sampled from a simple rule based policy. Used the new reward function. Sequence length = 230, Buildings = 5, Episodes = 1 ",
|
27 |
),
|
|
|
|
|
|
|
|
|
28 |
]
|
29 |
|
30 |
def _info(self):
|
|
|
9 |
_URLS = {
|
10 |
"f_230": f"{_BASE_URL}/f_230x5x38.pkl",
|
11 |
"rb_230": f"{_BASE_URL}/rb_230x5x38.pkl",
|
12 |
+
"merged1": f"{_BASE_URL}/lstm_rb1_8759x5x2.pkl",
|
13 |
}
|
14 |
|
15 |
|
|
|
26 |
name="rb_230",
|
27 |
description="Data sampled from a simple rule based policy. Used the new reward function. Sequence length = 230, Buildings = 5, Episodes = 1 ",
|
28 |
),
|
29 |
+
datasets.BuilderConfig(
|
30 |
+
name="merged1",
|
31 |
+
description="Mixed data from RB agent and LSTM agent. Used the new reward function. Sequence length = 8759, Buildings = 5, Episodes = 2 ",
|
32 |
+
),
|
33 |
]
|
34 |
|
35 |
def _info(self):
|