Time Series Forecasting
Safetensors
granite_tsfm
tinytimemixer
ttm4hvac
tsfm
digital twin
hvac
energy
experiment
Ferran Aran Domingo commited on
Commit
2f451a0
·
unverified ·
1 Parent(s): 91f105b

feat(tsp): add tsp checkpoint

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +114 -0
preprocessor_config.json ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "categorical_columns": [],
3
+ "categorical_encoder": null,
4
+ "conditional_columns": [],
5
+ "context_length": 512,
6
+ "control_columns": [
7
+ "Heating Setpoint (C)",
8
+ "Cooling Setpoint (C)"
9
+ ],
10
+ "encode_categorical": false,
11
+ "feature_extractor_type": "TimeSeriesPreprocessor",
12
+ "freq": "15min",
13
+ "frequency_mapping": {
14
+ "10min": 4,
15
+ "15min": 5,
16
+ "2min": 2,
17
+ "30min": 6,
18
+ "5min": 3,
19
+ "D": 8,
20
+ "H": 7,
21
+ "W": 9,
22
+ "d": 8,
23
+ "h": 7,
24
+ "min": 1,
25
+ "oov": 0
26
+ },
27
+ "id_columns": [],
28
+ "observable_columns": [
29
+ "Outdoor Air Temperature (C)",
30
+ "Outdoor Humidity (%)",
31
+ "Wind Speed (m/s)",
32
+ "Direct Solar Radiation (W/m^2)"
33
+ ],
34
+ "prediction_length": 96,
35
+ "processor_class": "TimeSeriesPreprocessor",
36
+ "scale_categorical_columns": true,
37
+ "scaler_dict": {
38
+ "0": {
39
+ "copy": true,
40
+ "feature_names_in_": [
41
+ "Outdoor Air Temperature (C)",
42
+ "Outdoor Humidity (%)",
43
+ "Wind Speed (m/s)",
44
+ "Direct Solar Radiation (W/m^2)",
45
+ "Heating Setpoint (C)",
46
+ "Cooling Setpoint (C)"
47
+ ],
48
+ "mean_": [
49
+ 11.390493131575868,
50
+ 0.4956289851215924,
51
+ 4.1970175874735585,
52
+ 278.3432437873138,
53
+ 17.499021526418787,
54
+ 27.500978473581213
55
+ ],
56
+ "n_features_in_": 6,
57
+ "n_samples_seen_": 24528,
58
+ "scale_": [
59
+ 11.317891632086864,
60
+ 0.22545425324222762,
61
+ 1.9710404456834305,
62
+ 363.18039056252474,
63
+ 2.9578743328627466,
64
+ 2.9578743328627466
65
+ ],
66
+ "var_": [
67
+ 128.09467099566186,
68
+ 0.0508296203050105,
69
+ 3.885000438519936,
70
+ 131899.996089148,
71
+ 8.749020569008238,
72
+ 8.749020569008238
73
+ ],
74
+ "with_mean": true,
75
+ "with_std": true
76
+ }
77
+ },
78
+ "scaler_type": "standard",
79
+ "scaling": true,
80
+ "scaling_id_columns": [],
81
+ "scaling_id_columns_types": [],
82
+ "static_categorical_columns": [],
83
+ "target_columns": [
84
+ "Room Air Temperature (C)",
85
+ "HVAC Power Consumption (W)"
86
+ ],
87
+ "target_scaler_dict": {
88
+ "0": {
89
+ "copy": true,
90
+ "feature_names_in_": [
91
+ "Room Air Temperature (C)",
92
+ "HVAC Power Consumption (W)"
93
+ ],
94
+ "mean_": [
95
+ 22.793821579667963,
96
+ 297.210481104862
97
+ ],
98
+ "n_features_in_": 2,
99
+ "n_samples_seen_": 24528,
100
+ "scale_": [
101
+ 3.289274282514853,
102
+ 519.4272208283594
103
+ ],
104
+ "var_": [
105
+ 10.819325305613603,
106
+ 269804.6377374732
107
+ ],
108
+ "with_mean": true,
109
+ "with_std": true
110
+ }
111
+ },
112
+ "time_series_task": "forecasting",
113
+ "timestamp_column": "time"
114
+ }