Update CityLearn.py
Browse files- CityLearn.py +10 -0
CityLearn.py
CHANGED
@@ -11,6 +11,8 @@ _URLS = {
|
|
11 |
"s_week": f"{_BASE_URL}/s_week.pkl",
|
12 |
"s_month": f"{_BASE_URL}/s_month.pkl",
|
13 |
"s_random": f"{_BASE_URL}/s_random.pkl",
|
|
|
|
|
14 |
}
|
15 |
|
16 |
|
@@ -35,6 +37,14 @@ class DecisionTransformerCityLearnDataset(datasets.GeneratorBasedBuilder):
|
|
35 |
name="s_random",
|
36 |
description="Random environment interactions in CityLearn environment. Data size 950x461",
|
37 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
]
|
39 |
|
40 |
def _info(self):
|
|
|
11 |
"s_week": f"{_BASE_URL}/s_week.pkl",
|
12 |
"s_month": f"{_BASE_URL}/s_month.pkl",
|
13 |
"s_random": f"{_BASE_URL}/s_random.pkl",
|
14 |
+
"s_random2": f"{_BASE_URL}/s_random2.pkl",
|
15 |
+
"s_random3": f"{_BASE_URL}/s_random3.pkl",
|
16 |
}
|
17 |
|
18 |
|
|
|
37 |
name="s_random",
|
38 |
description="Random environment interactions in CityLearn environment. Data size 950x461",
|
39 |
),
|
40 |
+
datasets.BuilderConfig(
|
41 |
+
name="s_random2",
|
42 |
+
description="Random environment interactions in CityLearn environment. Data size 43795x10",
|
43 |
+
),
|
44 |
+
datasets.BuilderConfig(
|
45 |
+
name="s_random3",
|
46 |
+
description="Random environment interactions in CityLearn environment. Data size 23050x19",
|
47 |
+
),
|
48 |
]
|
49 |
|
50 |
def _info(self):
|