dann-od commited on
Commit
17b6c94
·
verified ·
1 Parent(s): de43669

First chronos-2 commit

Browse files
README.md CHANGED
@@ -1,5 +1,185 @@
1
  ---
2
  license: other
3
- license_name: embedl-models-community-licence-1.0
4
  license_link: https://github.com/embedl/embedl-models/blob/main/LICENSE
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: other
3
+ license_name: embedl-models-community-licence-v1.0
4
  license_link: https://github.com/embedl/embedl-models/blob/main/LICENSE
5
+ base_model: amazon/chronos-2
6
+ quantized_from: amazon/chronos-2
7
+ tags:
8
+ - time-series
9
+ - time-series-forecasting
10
+ - chronos
11
+ - chronos-2
12
+ - int8
13
+ - tensorrt
14
+ - quantization
15
+ - edge
16
+ - jetson
17
+ - orin
18
+ library_name: onnx
19
+ pipeline_tag: time-series-forecasting
20
+ gated: true
21
+ extra_gated_heading: Acknowledge Embedl Models Community Licence v1.0
22
+ extra_gated_description: |
23
+ By requesting access you agree to the Embedl Models Community
24
+ Licence v1.0 (no redistribution as a hosted service) and to the
25
+ upstream chronos-2 license terms.
26
+ extra_gated_button_content: Request access
27
  ---
28
+
29
+ <p align="center">
30
+ <a href="https://embedl.com">
31
+ <img src="https://huggingface.co/datasets/embedl/documentation-images/resolve/main/embedl_banner.svg" alt="Embedl" width="240">
32
+ </a>
33
+ </p>
34
+
35
+ # Embedl Chronos-2 (Quantized for TensorRT)
36
+
37
+ Deployable INT8-quantized version of
38
+ [`amazon/chronos-2`](https://huggingface.co/amazon/chronos-2),
39
+ optimized with
40
+ [embedl-deploy](https://github.com/embedl/embedl-deploy) for
41
+ low-latency NVIDIA TensorRT inference on edge GPUs. Two
42
+ static-context variants ship: **ctx=512** for short-history
43
+ forecasting and **ctx=2048** for long-history use cases.
44
+
45
+ ## Highlights
46
+
47
+ - **Per-tensor INT8** activations + **per-channel INT8** weights via
48
+ embedl-deploy's PTQ flow on top of TensorRT's fused MHA kernel.
49
+ No QAT or distillation needed.
50
+ - **Drop-in replacement** for `amazon/chronos-2` inference: same
51
+ `(context, group_ids) → quantile_preds` signature; 21-quantile
52
+ output grid (0.01..0.99 step 0.05).
53
+ - **Validated** on the [GIFT-Eval](https://huggingface.co/datasets/Salesforce/GiftEval)
54
+ benchmark across 125 task configurations. See Accuracy below.
55
+ - **Two ctx variants** so you can pick the latency/history-window
56
+ trade-off that fits your deployment.
57
+
58
+ ## Quick Start
59
+
60
+ ```bash
61
+ pip install onnxruntime-gpu numpy
62
+ python infer_trt.py --ctx 512 # 1.2× faster than FP16 on Orin
63
+ python infer_trt.py --ctx 2048 # 1.3× faster than FP16 on Orin
64
+ ```
65
+
66
+ The `infer_trt.py` helper script creates a synthetic seasonal context
67
+ for demonstration; replace it with your own series of the right
68
+ length.
69
+
70
+ ## Files
71
+
72
+ | File | Purpose |
73
+ |---|---|
74
+ | `embedl_chronos_2_ctx512_int8.onnx` | INT8 ONNX with Q/DQ — ctx=512, 1024-step horizon. |
75
+ | `embedl_chronos_2_ctx2048_int8.onnx` | INT8 ONNX with Q/DQ — ctx=2048, 1024-step horizon. |
76
+ | `infer_trt.py` | ONNX Runtime / TensorRT inference example. |
77
+
78
+ Both artifacts emit a `(1, 21, 1024)` quantile tensor (21 quantile
79
+ levels × 64 output patches × 16 steps-per-patch = 1024 horizon
80
+ steps). Slice the median (`preds[0, 10]`) for a point forecast and
81
+ clip to your needed prediction length.
82
+
83
+ ## Performance
84
+
85
+ Latency measured with TensorRT + `trtexec`, GPU compute time only
86
+ (`--noDataTransfers`), CUDA Graph + Spin Wait enabled, clocks locked
87
+ (`nvpmodel -m 0 && jetson_clocks` on Jetson).
88
+
89
+ ### Jetson Orin Nano Super
90
+
91
+ #### ctx=512
92
+
93
+ <p align="center">
94
+ <img src="https://huggingface.co/datasets/embedl/documentation-images/resolve/main/chronos-2-quantized-trt/chronos-2-quantized-trt__orin-mountain-view__latency_ctx512.svg" alt="Chronos-2 INT8 latency, ctx=512" width="640">
95
+ </p>
96
+
97
+ | Build | Mean latency (ms) |
98
+ |---|---|
99
+ | TensorRT FP16 | **2.977** |
100
+ | TensorRT `--best` | 2.974 |
101
+ | **embedl INT8** | **2.432** |
102
+ | Speedup (FP16 → embedl INT8) | **1.22×** |
103
+
104
+ #### ctx=2048
105
+
106
+ <p align="center">
107
+ <img src="https://huggingface.co/datasets/embedl/documentation-images/resolve/main/chronos-2-quantized-trt/chronos-2-quantized-trt__orin-mountain-view__latency_ctx2048.svg" alt="Chronos-2 INT8 latency, ctx=2048" width="640">
108
+ </p>
109
+
110
+ | Build | Mean latency (ms) |
111
+ |---|---|
112
+ | TensorRT FP16 | **4.482** |
113
+ | TensorRT `--best` | 4.482 |
114
+ | **embedl INT8** | **3.482** |
115
+ | Speedup (FP16 → embedl INT8) | **1.29×** |
116
+
117
+ ## Accuracy
118
+
119
+ Evaluated on the
120
+ [GIFT-Eval](https://huggingface.co/datasets/Salesforce/GiftEval)
121
+ benchmark — 125 task configurations spanning 50 datasets ×
122
+ {short, medium, long} horizons. Aggregate WQL (weighted quantile
123
+ loss, lower is better) reported using the
124
+ [TIME-paper normalization](https://arxiv.org/html/2602.12147v2):
125
+ geomean of per-task ratio against the Seasonal-Naive baseline.
126
+
127
+ | Metric | FP32 baseline | **embedl INT8 ctx=512** | **embedl INT8 ctx=2048** |
128
+ |---|---|---|---|
129
+ | Geomean WQL / Seasonal-Naive | 0.549 | **0.634** | **0.618** |
130
+ | Geomean WQL / FP32 | 1.000 | **1.156×** | **1.126×** |
131
+ | Median WQL / FP32 | 1.000 | 1.074× | 1.045× |
132
+ | Cells within 10 % of FP32 | — | 71 / 125 (57 %) | 79 / 125 (63 %) |
133
+ | Cells within 20 % of FP32 | — | 96 / 125 (77 %) | 98 / 125 (78 %) |
134
+ | Cells beating FP32 | — | 14 / 125 | 19 / 125 |
135
+
136
+ **How to read the headline number.** Geomean WQL/S-Naive 0.634
137
+ (ctx=512) and 0.618 (ctx=2048) means the INT8 model retains the
138
+ bulk of `chronos-2`'s skill margin over the no-model Seasonal-Naive
139
+ baseline. The FP32 model sits at 0.549 by the same convention; the
140
+ INT8 versions are 15-16 % closer to S-Naive but still convincingly
141
+ beat it on the geomean.
142
+
143
+ **Where the regression concentrates.** Worst-case cells are
144
+ out-of-distribution low-frequency series (`us_births/M`,
145
+ `m4_hourly/{medium,long}`) and high-frequency long-horizon
146
+ forecasts (`solar/10T/{medium,long}`). The full per-task CSVs
147
+ ship with the artifacts; check them before deploying to a domain
148
+ that resembles those outliers.
149
+
150
+ ## How This Was Built
151
+
152
+ 1. **Trace.** `torch.export` on `amazon/chronos-2` at static
153
+ ctx={512, 2048}, `num_output_patches=64` (1024-step horizon).
154
+ 2. **Transform.** embedl-deploy's TensorRT pattern set recomposes
155
+ chronos-2's manual SDPA + RoPE into fused INT8-ready modules.
156
+ 3. **Quantize (PTQ).** Per-tensor symmetric INT8 activations +
157
+ per-channel INT8 weights. Calibrated on a 1327-window cohort
158
+ drawn from 28 diverse GIFT-Eval **training** splits (no eval-set
159
+ leakage).
160
+ 4. **Export.** ONNX opset 20 + onnxslim + onnxsim simplification,
161
+ with Bool→Float casts inserted before Einsum nodes for TRT 10.x
162
+ compatibility.
163
+
164
+ ## Creating Your Own Optimized Models
165
+
166
+ This artifact was produced with
167
+ [embedl-deploy](https://github.com/embedl/embedl-deploy), Embedl's
168
+ open-source PyTorch → TensorRT deployment library. The same workflow
169
+ applies to your own models — see
170
+ [the documentation](https://github.com/embedl/embedl-deploy#readme)
171
+ for installation and usage.
172
+
173
+ ## License
174
+
175
+ | Component | License |
176
+ |---|---|
177
+ | Optimized model artifacts (this repo) | [Embedl Models Community Licence v1.0](https://github.com/embedl/embedl-models/blob/main/LICENSE) — no redistribution as a hosted service |
178
+ | Upstream architecture and weights | [Amazon Chronos-2 License](https://huggingface.co/amazon/chronos-2/blob/main/LICENSE) |
179
+
180
+ ## Contact
181
+
182
+ We offer engineering support for on-prem/edge deployments and partner
183
+ co-marketing opportunities. Reach out at
184
+ [contact@embedl.com](mailto:contact@embedl.com), or open an issue on
185
+ [GitHub](https://github.com/embedl/embedl-deploy).
chronos_2_fp32_gifteval.csv ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MSE[mean],MSE[0.5],MAE[0.5],MASE[0.5],MAPE[0.5],sMAPE[0.5],MSIS,RMSE[mean],NRMSE[mean],ND[0.5],mean_weighted_sum_quantile_loss,dataset,term,prediction_length,target_dim,to_univariate,elapsed_s
2
+ 58.83663691627967,58.83663691627967,4.0074372121922694,0.8134083343480019,0.10827447154547712,0.09236288420323034,7.359143904422745,7.670504345626803,0.13577572919619935,0.07093571493817163,0.057362677759145435,LOOP_SEATTLE/H,short,48,1,False,36.17671775817871
3
+ 69.63697110423116,69.63697110423116,4.392547235793988,0.8982825354394985,0.11467961330039829,0.10076109548594314,7.816686545369161,8.344876937632524,0.1474947659246474,0.07763778078436193,0.0630365221385412,LOOP_SEATTLE/H,medium,480,1,False,4.0553364753723145
4
+ 62.33608746130031,62.33608746130031,4.147089460784314,0.8659556974595146,0.1205572684031809,0.09643444878808156,7.012392801000645,7.895320605352281,0.141099941416787,0.0741140365560535,0.05943207676980247,LOOP_SEATTLE/H,long,720,1,False,4.105443716049194
5
+ 45029.00444444444,45029.00444444444,87.30145616319444,0.7817669058211278,0.30378379154118873,0.20929091559516058,8.646949756937762,212.20038747477452,0.37639063361422487,0.15485103864202615,0.12811290993775595,M_DENSE/H,short,48,1,False,4.307518720626831
6
+ 39768.28888888889,39768.28888888889,81.87489583333333,0.7122928076243747,0.2865292624425127,0.1974404568142361,8.395337465793906,199.41988087672928,0.3469653987004958,0.1424519749559685,0.11819077824771547,M_DENSE/H,medium,480,1,False,0.8950450420379639
7
+ 36572.63012345679,36572.63012345679,79.89395833333333,0.6912561394863417,0.28345734146180995,0.1942735007957176,7.066216822814787,191.23971900067409,0.33106422396125734,0.13830825234963245,0.11355242655453751,M_DENSE/H,long,720,1,False,0.680001974105835
8
+ 9034.562962962964,9034.562962962964,46.292560763888886,0.677186546087631,0.12099069379010494,0.09830382170500579,6.589806031274008,95.05031805818939,0.16454616034251812,0.08013927024902082,0.06518802481469631,M_DENSE/D,short,30,1,False,0.15047073364257812
9
+ 14936.0,14936.0,52.722541666666665,0.773364108522407,0.13979369533768202,0.11820799424913195,7.037603211815789,122.21292893961751,0.219753124643872,0.09480128960939209,0.07836850159852964,M_DENSE/D,medium,300,1,False,0.06839632987976074
10
+ 15471.728592592593,15471.728592592593,54.76486574074074,0.8031574967709104,0.1354459700535304,0.11528502965856481,8.860032935516776,124.38540345471648,0.22178210918598204,0.09764704777189079,0.08504622075005845,M_DENSE/D,long,450,1,False,0.07117557525634766
11
+ 16.66165567288614,16.66165567288614,2.72348877623841,0.543527256072731,1069256919774.5402,0.39557079226688296,3.820562198507402,4.081869139608243,0.38167223794227956,0.25465785910455674,0.2001985596653093,SZ_TAXI/15T,short,48,1,False,2.894649028778076
12
+ 16.367886952457265,16.367886952457265,2.7479281433627136,0.5365999000322729,9254949707733.99,0.40491168682391826,4.014900112289986,4.045724527505211,0.37652219650950525,0.2557405807921466,0.2028435078498006,SZ_TAXI/15T,medium,480,1,False,0.4899437427520752
13
+ 15.648910478988604,15.648910478988604,2.706446425391738,0.5105516199037178,5982526023018.339,0.40224644152866806,4.124433726253804,3.9558703819751986,0.3661483158956745,0.25050386009469255,0.20113596815117013,SZ_TAXI/15T,long,720,1,False,0.49183201789855957
14
+ 1992210.217294391,1992210.217294391,167.4771014979199,0.6493832030168496,2.112788543429913,0.7382055727378207,12.612891865355762,1411.456771316214,4.43162518057926,0.5258366782827482,0.4045339744091917,bitbrains_fast_storage/5T,short,48,2,True,262.84217596054077
15
+ 3041373.108059589,3041373.108059589,272.7971083852116,0.9481737420668795,3.7921032356072417,0.8067981778933739,20.495804275249313,1743.9532987037207,5.298611667369403,0.8288329408757199,0.6221253883089759,bitbrains_fast_storage/5T,medium,480,2,True,31.610358715057373
16
+ 4553022.877023265,4553022.877023265,375.5764137234492,0.8666342331281148,4.547296629914631,0.8257576482080172,15.121868634899833,2133.781356424145,5.638947066372654,0.9925363299235925,0.7485821019600887,bitbrains_fast_storage/5T,long,720,2,True,31.758749961853027
17
+ 1788836.4161260442,1788836.4161260442,123.71914652484425,1.6114025982842954,0.9755711576988767,0.6603173006237518,51.725906740008966,1337.4738936241126,5.472557127652444,0.5062230376003858,0.43373516691878117,bitbrains_rnd/5T,short,48,2,True,105.11691927909851
18
+ 2197466.7349630296,2197466.7349630296,159.36247202770429,4.354516531324072,1.155638033591266,0.7222521789540914,159.1549550371253,1482.3854879764,6.237151405786306,0.670519156116429,1.1903922314478652,bitbrains_rnd/5T,medium,480,2,True,12.540696382522583
19
+ 2278028.7943836297,2278028.7943836297,167.5212252189621,3.2670142122358565,1.4851472829033283,0.6949619242629084,114.87260354868803,1509.314014505805,5.7818417561715645,0.6417360507535992,1.0140047079667962,bitbrains_rnd/5T,long,720,2,True,12.605458498001099
20
+ 325057.3511111111,325057.3511111111,314.48534722222223,1.002132254470556,0.014044371710883246,0.014177753660413954,7.1268745306950265,570.138010582623,0.021987944161414006,0.012128442808503169,0.00936221443883602,bizitobs_application,short,60,2,True,0.18119597434997559
21
+ 1545893.8666666667,1545893.8666666667,692.2692708333333,1.651829727186487,0.023083839416503906,0.023477436701456706,15.99064026370717,1243.3398033790547,0.048822294711004466,0.027183376795420728,0.0200624144477491,bizitobs_application,medium,600,2,True,0.04683399200439453
22
+ 5654708.906666666,5654708.906666666,1452.5326388888889,2.9334303911947046,0.0425923580593533,0.04362146165635851,23.45902673277597,2377.963184464105,0.09170853503428665,0.05601837794305738,0.04651112862617109,bizitobs_application,long,900,2,True,0.030991077423095703
23
+ 19.172839936755953,19.172839936755953,2.5672874813988096,0.2691670864559239,0.15117497681759712,0.2052871340797061,2.60559198277865,4.378680159221036,0.15038160022737782,0.08817104370672955,0.07050047995099343,bizitobs_l2c/5T,short,48,7,True,1.2870922088623047
24
+ 120.34432397959183,120.34432397959183,7.033641581632653,0.6732321355396349,0.4831467481921092,0.6672305982940051,4.773014364851499,10.970156059946998,0.5771915318844885,0.37007298137275557,0.28359653228726334,bizitobs_l2c/5T,medium,480,7,True,0.4586937427520752
25
+ 123.50702380952382,123.50702380952382,6.930120907738095,0.683824144735353,0.5816307576548584,0.8025618489583334,5.285812866173072,11.113371397083956,0.6239991894261797,0.3891159284201256,0.3112756587813621,bizitobs_l2c/5T,long,720,7,True,0.3418912887573242
26
+ 54.62269810267857,54.62269810267857,4.53296382843502,0.4525645648906711,0.4067330852115183,0.6035707261827257,2.7161572533409353,7.390717022229884,0.39837857545161154,0.24433835947364957,0.18931015087059144,bizitobs_l2c/H,short,48,7,True,0.11854052543640137
27
+ 72.12882254464286,72.12882254464286,4.863960774739583,0.4942972509566347,0.5194867285272646,0.7610739571707589,3.2158364026755777,8.492868923081462,0.5142561132196934,0.2945202128426438,0.23093671502118576,bizitobs_l2c/H,medium,480,7,True,0.034079551696777344
28
+ 81.18266369047619,81.18266369047619,5.217496744791666,0.5600462927013263,0.6170813629420177,0.7753154936290922,4.890836173588516,9.010142268048613,0.5503654946044039,0.31869975979480725,0.25837335900743974,bizitobs_l2c/H,long,720,7,True,0.03384089469909668
29
+ 1948.8999206349206,1948.8999206349206,18.211304150132275,0.7314895156989194,0.061812495478877315,0.04955040260597512,6.444805095843265,44.14634662840087,0.03270502458505845,0.01349151618296954,0.010549502184817199,bizitobs_service,short,60,2,True,3.6564416885375977
30
+ 10590.631746031746,10590.631746031746,30.858789682539683,0.946628706116602,0.06595815022786458,0.0576140388609871,10.593271813076415,102.91079508988231,0.07745308948882447,0.023225052305844474,0.018205342692552296,bizitobs_service,medium,600,2,True,0.5435214042663574
31
+ 131202.1671957672,131202.1671957672,77.05568121693122,1.3392820950565012,0.07893508184523809,0.07730414496527778,20.317332372923705,362.21839709734127,0.2683429684008021,0.057085312053712436,0.05200949449036458,bizitobs_service,long,900,2,True,0.3032417297363281
32
+ 1.3713381774748277,1.3713381774748277,0.45228555070398907,0.8335596736547524,0.8491110566344905,1.9056976184563696,15.486252528765752,1.171041492635862,2.808037373389657,1.0845343549375361,0.9610725792367537,car_parts_with_missing,short,12,1,False,3.4724533557891846
33
+ 478349.7423558897,478349.7423558897,122.67389396342419,35.4055544513188,0.09519012882546843,0.3723061391883028,681.8764099871573,691.6283267448563,0.260228511518559,0.04615664742728792,0.03921346398622563,covid_deaths,short,30,1,False,0.3910965919494629
34
+ 123959.88433910473,123959.88433910473,46.03825076541385,0.8893869325418318,0.14755283253930535,0.1529251074576163,10.650799377753518,352.0793722147106,0.6940178494483251,0.09075046796291758,0.07615494221665031,electricity/15T,short,48,1,False,190.89637446403503
35
+ 246696.94555208334,246696.94555208334,50.56244073761261,0.7949739042263244,0.11919696868476558,0.12567118519276113,7.068626922088274,496.68596270891663,0.8558399252275553,0.08712417654042191,0.0703592570414249,electricity/15T,medium,480,1,False,187.71230030059814
36
+ 313725.90962462465,313725.90962462465,56.42339306493994,0.8453582178390083,0.12111301708818797,0.12754392350113786,7.140606696105495,560.1124080259467,0.8836459862486622,0.08901481934329,0.07111621928916696,electricity/15T,long,720,1,False,185.55043482780457
37
+ 1753789.4132432432,1753789.4132432432,163.9398732228322,0.8841763497285369,0.14919016827603124,0.1217567811570726,10.593919215557396,1324.3071446017511,0.6251675528091452,0.07739132856629005,0.06449202375233852,electricity/H,short,48,1,False,73.88576531410217
38
+ 5797958.889121622,5797958.889121622,240.62474275056306,1.0592428973921704,0.23227859823084496,0.12832776593732403,8.88442560494104,2407.8951158889004,0.9398807924764703,0.0939237645416948,0.07461304483156112,electricity/H,medium,480,1,False,29.717260122299194
39
+ 9151900.214198198,9151900.214198198,281.29623648648646,1.1896222216351555,0.28998266072179274,0.14037088040188625,9.870221381049673,3025.210771863375,1.1931421969034801,0.1109431490538554,0.08740771024593166,electricity/H,long,720,1,False,18.868995666503906
40
+ 1238650551.1391711,1238650551.1391711,4233.316153153153,1.3748976349845432,0.23571201824914054,0.0912842858116906,10.649485166644697,35194.467621192554,0.5783619855449911,0.0695674434439528,0.05494243318284339,electricity/D,short,30,1,False,3.44040584564209
41
+ 1360814940.203967,1360814940.203967,4905.836750525433,1.8131449825595474,0.2323567569825116,0.13088768237223866,13.948978474088731,36889.22525892848,0.6143611671539747,0.08170287043884678,0.06549217445281068,electricity/D,medium,300,1,False,0.8081121444702148
42
+ 1255952990.9026732,1255952990.9026732,5342.934666382174,2.3581393592735034,0.5054057672265582,0.21755664520910173,24.629448477276366,35439.42706792356,0.6080125925874611,0.09166546491584647,0.0801623243053801,electricity/D,long,450,1,False,0.8304843902587891
43
+ 39449586354.046844,39449586354.046844,26588.311824324323,1.4199514988029467,0.11187627819951146,0.09250963657825917,10.450238807250411,198619.19935909228,0.4531834683869409,0.06066575341146254,0.04743878453767958,electricity/W,short,8,1,False,1.3300104141235352
44
+ 490355105437.037,490355105437.037,83028.76863833478,2.945770088220431,0.4233359841051057,0.26639763626138335,31.862496849091336,700253.6008026213,1.618795213446826,0.19193985307046657,0.14610617914780707,electricity/W,medium,80,1,False,0.5272338390350342
45
+ 1829774946927.4624,1829774946927.4624,149105.06257546702,4.042652625088533,0.41522948672639093,0.308971258445646,43.16184834983823,1352691.741280127,3.208459112589543,0.3536633529681767,0.3003868059886152,electricity/W,long,120,1,False,0.5271000862121582
46
+ 5.27652820405506,5.27652820405506,1.0898533412388394,0.6779721164965491,0.49955148793459647,0.23665262858072916,4.498393223867351,2.297069481764768,0.43424174793060627,0.20602764681021926,0.1593200037921914,ett1/15T,short,48,7,True,2.0942678451538086
47
+ 9.472091393849206,9.472091393849206,1.5425723896329364,0.9701993889033137,0.811933931961868,0.36572901165674604,6.807120692160648,3.0776762977690177,0.586608145384529,0.2940158226711178,0.22694655643417974,ett1/15T,medium,480,7,True,1.5475585460662842
48
+ 9.203002232142858,9.203002232142858,1.5321775793650794,0.9799154142771063,0.8288111313097676,0.3689623635912698,7.3051849919935785,3.0336450405647093,0.5782157442258068,0.2920345615562722,0.23045309167388053,ett1/15T,long,720,7,True,1.0348336696624756
49
+ 93.03328683035714,93.03328683035714,4.751118977864583,0.7928234650232502,0.44889835176013765,0.24818736485072546,5.535504176683215,9.645376448348562,0.45018917971389005,0.2217541603297573,0.17122954571808396,ett1/H,short,48,7,True,0.9801545143127441
50
+ 149.38611421130952,149.38611421130952,6.974668666294643,1.303144076283248,2727574286339.3525,0.4337255568731399,9.404989354498372,12.222361237146835,0.5854221302542123,0.3340700957217554,0.26022715101888666,ett1/H,medium,480,7,True,0.21123719215393066
51
+ 163.28184523809523,163.28184523809523,7.359563078703704,1.4066081698454134,3150427968557.8525,0.47477449285920964,10.09342488567916,12.778178478879344,0.6119192917403762,0.35243353613213496,0.2748231511774757,ett1/H,long,720,7,True,0.17609858512878418
52
+ 37204.031746031746,37204.031746031746,132.28628472222223,1.6818402453603698,1.0336294991629464,0.49610469757564485,11.048766817616432,192.88346675138268,0.5066148234324639,0.3474543148038106,0.2659204005853805,ett1/D,short,30,7,True,0.044951438903808594
53
+ 48665.321904761906,48665.321904761906,150.6402380952381,1.8552264027088274,2.050801013764881,0.5098714773995535,20.263269223967058,220.6021801904095,0.6084980876585465,0.4155185444054171,0.3528061732091657,ett1/D,medium,300,7,True,0.031235456466674805
54
+ 96142.03936507937,96142.03936507937,210.49079365079365,2.7406025264706346,2.087203460353736,0.7215828062996031,18.293931797934242,310.06779801372375,0.7876430098103052,0.5346946806812005,0.42424925776903416,ett1/D,long,450,7,True,0.03190326690673828
55
+ 1413398.857142857,1413398.857142857,940.7486049107143,1.6978339410221825,0.6414729527064732,0.6181692395891462,8.69176950862132,1188.8645243015947,0.4730775697395903,0.37434632344548774,0.2807314414705215,ett1/W,short,8,7,True,0.03644585609436035
56
+ 6756448.914285715,6756448.914285715,1545.5633928571428,2.3693667995624415,1.259610639299665,0.6698552812848773,25.322630054175516,2599.317009194091,0.9649463879157041,0.5737606486461762,0.5573101650144563,ett1/W,medium,80,7,True,0.029650211334228516
57
+ 7.885602678571429,7.885602678571429,1.7201119559151785,0.7374179932509085,0.10541900708390663,0.12444859459286645,5.064345796944098,2.8081315280042403,0.13331199343839487,0.08165983376969607,0.06496620216221208,ett2/15T,short,48,7,True,2.1117208003997803
58
+ 11.48641369047619,11.48641369047619,2.0695225694444446,0.8482600138505856,0.12720146264535762,0.1545086185515873,6.656268158946069,3.3891612075078683,0.1806145355747843,0.110288603833217,0.08833330179867842,ett2/15T,medium,480,7,True,1.5366194248199463
59
+ 11.543701636904762,11.543701636904762,2.103270089285714,0.86737078900561,0.13167515176583064,0.1598214867001488,7.408991211791617,3.397602336487418,0.18106437861765604,0.1120870702529993,0.09131100082739897,ett2/15T,long,720,7,True,1.0234999656677246
60
+ 111.06103050595237,111.06103050595237,6.450023251488095,0.7345698680514134,0.11702052440634782,0.10871404012044271,5.030750387381055,10.538549734472594,0.1336581331291679,0.08180424139515324,0.06471675724861232,ett2/H,short,48,7,True,0.981806755065918
61
+ 258.3689918154762,258.3689918154762,9.903988792782737,1.045183237870832,0.17250998935485992,0.16556407383510044,7.698612821808257,16.073860513749526,0.21660560713566748,0.13346261799960896,0.10716962787563732,ett2/H,medium,480,7,True,0.21021628379821777
62
+ 239.21044973544974,239.21044973544974,9.265621899801587,1.0054270169082449,0.17527572243304318,0.1676919281167328,8.489165132548221,15.466429766932308,0.2118008518146533,0.12688556056849623,0.10488434532075647,ett2/H,long,720,7,True,0.17554831504821777
63
+ 106425.6634920635,106425.6634920635,193.10455109126985,1.2621459454445731,0.4293451218377976,0.130895753890749,12.828559091884134,326.22946447564095,0.18670972979349812,0.11051882948125881,0.0926612352869046,ett2/D,short,30,7,True,0.04428458213806152
64
+ 563138.499047619,563138.499047619,589.5917857142857,5.405589382725757,4.807529277764188,0.7247295270647321,37.345495746705105,750.4255453058745,0.4769206054856188,0.3747053564355829,0.2902198776331002,ett2/D,medium,300,7,True,0.03082418441772461
65
+ 1096974.5473015874,1096974.5473015874,770.9906349206349,11.750332123694111,4.618662996580918,0.9244811042906746,221.30580779334457,1047.3655270733266,0.587236477971162,0.43227871578386035,0.36491769394799367,ett2/D,long,450,7,True,0.03141665458679199
66
+ 3047402.5714285714,3047402.5714285714,1220.254185267857,0.7868062345131778,0.12373028482709612,0.13081860542297363,8.701179131821474,1745.6811196288318,0.14643588301416277,0.10236061850713,0.08518104162262566,ett2/W,short,8,7,True,0.03528547286987305
67
+ 45337387.885714285,45337387.885714285,4721.549107142857,9.672750869319808,7.336825803029451,0.7951108660016741,246.94688541378184,6733.304380890135,0.539544154292521,0.37834086740442685,0.32708110595110856,ett2/W,medium,80,7,True,0.02945733070373535
68
+ 29.02934580405126,29.02934580405126,2.3009322760567383,0.7427021670652266,0.645664712771892,1.0698599062758372,6.8997685038287555,5.387888807691865,1.6529446189306929,0.7059005410063857,0.5732984736295581,hierarchical_sales/D,short,30,1,False,1.7037303447723389
69
+ 30.51680718154814,30.51680718154814,2.394110569922535,0.7566963780110134,0.7101027371418223,1.0592264764983401,6.844162978143018,5.5242019497433414,1.681738803041712,0.7288416826249623,0.5916266635684807,hierarchical_sales/D,medium,300,1,False,0.2862849235534668
70
+ 41.608007412841204,41.608007412841204,2.4360319702907223,0.7638891442241424,0.6324209003611293,1.0345588732095286,7.121088777303948,6.450426917099457,1.8392459895945292,0.6945993016375396,0.569681287881909,hierarchical_sales/D,long,450,1,False,0.3010709285736084
71
+ 462.63284560381356,462.63284560381356,8.882697671146715,0.7163955368853885,0.5188670175244765,0.45657760814084847,6.73970030880784,21.508901543403223,0.987484190643921,0.40780899493294587,0.3442783301339876,hierarchical_sales/W,short,8,1,False,0.5521442890167236
72
+ 1036.336122881356,1036.336122881356,10.73127400026483,0.7875807662391583,0.5757917713865706,0.47498417223914197,7.53861600275426,32.19217487032145,1.363346975033241,0.4544722438123309,0.3850501569060254,hierarchical_sales/W,medium,80,1,False,0.1749858856201172
73
+ 1076.6295903954801,1076.6295903954801,11.219914150776836,0.8345857154061005,0.5612343171337911,0.46794247384798726,7.862228104526691,32.81203423129203,1.336266151801113,0.45692965575109507,0.393096845075163,hierarchical_sales/W,long,120,1,False,0.17459750175476074
74
+ 3391.2407105606258,3391.2407105606258,18.74643709596371,0.7725826907508618,0.19566486463086702,0.17615653265563885,5.178615640535434,58.23436022281541,0.21140425045241557,0.06805391984666963,0.05391741304497105,hospital,short,12,1,False,0.9965651035308838
75
+ 1030.8529366629464,1030.8529366629464,6.572852289109003,0.2889010915151119,0.378636057693223,0.5590145413837736,2.2983012992617473,32.10689858368364,0.19942408814775117,0.04082565218403088,0.03202440217193671,jena_weather/10T,short,48,21,True,5.31438946723938
76
+ 1513.7266955266955,1513.7266955266955,9.75045882936508,0.6080058623813832,0.7596304719914128,0.6461542743281025,5.592097171388675,38.90664076384256,0.23876938924593719,0.05983839914852683,0.04854510039963525,jena_weather/10T,medium,480,21,True,2.9108269214630127
77
+ 1421.473148148148,1421.473148148148,9.902120535714285,0.6813050155967798,0.8368595571957602,0.6394842561590608,5.930554990672238,37.7024289422863,0.23070762758866864,0.06059277348917525,0.049856960049872695,jena_weather/10T,long,720,21,True,2.11612606048584
78
+ 1085.1142569966582,1085.1142569966582,8.657789493264412,0.5321948346112836,1.687248470581924,0.6135161614159096,4.510268786968424,32.94107249311501,0.2019266618205132,0.053071694356186895,0.04218308404354348,jena_weather/H,short,48,21,True,2.330366373062134
79
+ 1118.6489087301588,1118.6489087301588,9.779024057539683,0.7931557561233237,2.3709800741864395,0.6937440902467757,6.965313904000332,33.44620918325661,0.20466328578104828,0.05983958254826403,0.048081605183499236,jena_weather/H,medium,480,21,True,0.27159881591796875
80
+ 1175.6378306878307,1175.6378306878307,11.021527777777777,0.9861954355278707,2.3049402573529414,0.6733982954075728,7.239375444773777,34.28757545653864,0.20644919233342693,0.06636180825578718,0.053930168850335775,jena_weather/H,long,720,21,True,0.2802896499633789
81
+ 383.3648313492063,383.3648313492063,9.640113467261905,0.995152179894285,0.5865947897664181,0.4525840638175843,6.608144296878911,19.57970457767957,0.11790182310090432,0.05804923910779749,0.04557124108364581,jena_weather/D,short,30,21,True,0.06435728073120117
82
+ 5421.238095238095,5421.238095238095,30.451959325396825,3.076260857386644,0.6431795295387531,0.6151093982514881,22.359098226870632,73.62905741103913,0.3801653770676183,0.1572311395317627,0.12665559448862812,jena_weather/D,medium,300,21,True,0.044592857360839844
83
+ 4531.959515471624,4531.959515471624,23.989849887234634,1.0033036574541692,0.984432495306301,0.5193838328484681,7.611265443117097,67.3198300315117,1.40912596723235,0.5021510067729635,0.3963193865062084,kdd_cup_2018_with_missing/H,short,48,1,False,33.64001703262329
84
+ 5211.141701368625,5211.141701368625,27.093152303109353,1.1131605032641305,1.1811140303320724,0.580995273480866,8.839440897477226,72.1882379710755,1.5110304773194667,0.5671087147612562,0.44416190535868916,kdd_cup_2018_with_missing/H,medium,480,1,False,3.6498231887817383
85
+ 4169.58368462219,4169.58368462219,25.405737897012557,1.073522069990145,1.1823274263639427,0.6398321340779729,8.04559396890575,64.57231360747569,1.5151273745859182,0.5961212601628414,0.466581436227382,kdd_cup_2018_with_missing/H,long,720,1,False,3.7214725017547607
86
+ 2890.549614232163,2890.549614232163,21.277277710764512,1.2072387149471342,0.5386700166318873,0.4690153176610604,8.985671626142434,53.76383184104499,1.2043669403652257,0.47663362112242985,0.37677496468578414,kdd_cup_2018_with_missing/D,short,30,1,False,0.7758030891418457
87
+ 1597.794299021472,1597.794299021472,22.51157757941628,1.1589860149672258,0.9910643092222535,0.5586755408064156,10.216283478781767,39.97241922903181,1.0911634291420433,0.6145189773530747,2.7400754022156324,kdd_cup_2018_with_missing/D,medium,300,1,False,0.44089603424072266
88
+ 3759421.761643597,3759421.761643597,905.8999530266098,3.372171176427717,0.16633615526706494,0.15242567721296285,30.05686967362333,1938.9228354020686,0.31091526368803046,0.14526525637201865,0.11736193484306656,m4_yearly,short,6,1,False,31.17934775352478
89
+ 1828941.9688333333,1828941.9688333333,568.926890625,1.2007946197811996,0.11678897746404011,0.10427533582846324,9.359267702085145,1352.3838097349928,0.22636523445257806,0.09522834276457402,0.07597317128410709,m4_quarterly,short,8,1,False,34.248772859573364
90
+ 1863590.1677037037,1863590.1677037037,556.1525264395254,0.9224276260035013,0.15734057150946723,0.1311561357886703,7.719847941122787,1365.1337545104157,0.28372165790875997,0.11558758717248004,0.09263139582558999,m4_monthly,short,18,1,False,75.7354724407196
91
+ 248710.08185129633,248710.08185129633,254.36188932933362,2.11447969763644,0.060814350096296134,0.06074727616065928,14.533018851792255,498.70841365601234,0.09085693544782922,0.046340789780867434,0.03696973447520033,m4_weekly,short,13,1,False,0.8633699417114258
92
+ 382296.1880428538,382296.1880428538,184.1908255073676,3.3815462473946813,0.03963299313943308,0.030872834490643562,25.320887563110723,618.3010496860359,0.09551042414582317,0.028452392045769635,0.022571602215849997,m4_daily,short,14,1,False,15.704528331756592
93
+ 2390084.186543881,2390084.186543881,257.6146399456522,0.8105861670564862,0.09476994623500559,0.08216962645403236,5.835340525732153,1545.9897110084146,0.21106173179959795,0.03517008661616072,0.026532533157450522,m4_hourly,short,48,1,False,0.7555251121520996
94
+ 16821203.326610304,16821203.326610304,721.7325133982488,2.67576299262483,0.12881236790458936,0.12099148908483041,24.382935203445353,4101.366031776523,0.5794586191147546,0.10196947123073996,0.07566107233626589,m4_hourly,medium,480,1,False,0.790808916091919
95
+ 14295007.262721417,14295007.262721417,694.4811988392378,7.073430644799849,0.1987384102002818,0.16157707832733662,63.37478426017792,3780.873875537429,0.5506711832527545,0.10114878096991116,0.07868447611928649,m4_hourly,long,720,1,False,0.8044791221618652
96
+ 139.011819808303,139.011819808303,7.1017843175025686,0.681747374103615,0.667624833682477,0.39168942416650615,4.585466999793928,11.79032738342337,0.5426181840992144,0.3268405689604037,0.255800024382518,restaurant,short,30,1,False,1.282228946685791
97
+ 1310.958125,1310.958125,13.425965169270833,2.9834120945552733,0.27905426025390623,0.3306080118815104,26.012263433883763,36.207155715410735,1.172758400535259,0.43487021077589066,0.34936092282593734,saugeenday/D,short,30,1,False,0.17369389533996582
98
+ 1735.1017708333334,1735.1017708333334,16.220900065104168,3.633622440626876,0.3484034220377604,0.40417826334635415,40.018969512783926,41.654552822390656,1.3016641251782206,0.5068872971191187,0.42427038481606927,saugeenday/D,medium,300,1,False,0.07845735549926758
99
+ 1708.6274074074074,1708.6274074074074,16.967803819444445,3.8073636999822744,0.3611426685474537,0.41827519169560184,37.82976102181378,41.335546535728874,1.2710388093927252,0.5217479620363683,0.4306081920570046,saugeenday/D,long,450,1,False,0.06233787536621094
100
+ 961.8529296875,961.8529296875,14.638951110839844,1.1875832374354218,0.37026290893554686,0.3817786693572998,7.879954915247829,31.013753879327474,0.9361759495693607,0.4418889119393218,0.3468622436022056,saugeenday/W,short,8,1,False,0.06914734840393066
101
+ 997.2653125,997.2653125,14.352178955078125,1.1770035409052368,0.3359896850585937,0.3697178649902344,9.138833313215143,31.57950779382098,0.9801506209631441,0.44545650321207597,0.36248075760754755,saugeenday/W,medium,80,1,False,0.03044295310974121
102
+ 1095.9383680555557,1095.9383680555557,14.934925672743056,1.224116766566434,0.3364636739095052,0.362966071234809,9.093237723226,33.104959870925015,1.003373686788011,0.4526606131707236,0.3654616867677415,saugeenday/W,long,120,1,False,0.0278623104095459
103
+ 394.7450241815476,394.7450241815476,12.348471505301339,0.7235365136078266,0.35381516956147696,0.3544542675926572,4.297259267856138,19.86819126597959,0.5965027058202548,0.3707381596566985,0.2872324755993547,saugeenday/M,short,12,1,False,0.0305633544921875
104
+ 353.9479166666667,353.9479166666667,11.38948974609375,0.6485331806996573,0.34409411748250324,0.33976949055989586,4.43281297441835,18.81350357234576,0.5945105113089973,0.3599101755003156,0.28426347672017005,saugeenday/M,medium,120,1,False,0.026084423065185547
105
+ 398.00750868055553,398.00750868055553,12.85865478515625,0.7410423111200373,0.34165212843153214,0.3925002204047309,4.212158035744366,19.950125530446055,0.6135147052995904,0.39543479508561863,0.3017555353649827,saugeenday/M,long,180,1,False,0.02294468879699707
106
+ 20.39806457668035,20.39806457668035,1.8193186516309308,0.7965659392659443,4.997003185864659,1.494766094272734,3.4886299086652417,4.516421656209742,1.3138265706933252,0.5292395987394642,0.40131561368260865,solar/10T,short,48,1,False,34.15683579444885
107
+ 19.453405807619994,19.453405807619994,1.8131885618848154,0.7927632263619444,3.6166182071290227,1.4413332832199734,3.651704762131749,4.410601524465795,0.978730059942664,0.4023537696654239,0.29180266654692205,solar/10T,medium,480,1,False,18.76612663269043
108
+ 19.21828508338402,19.21828508338402,1.8225152998751775,0.7974542710831873,3.5260625609453586,1.4411484965056012,3.7996289514498924,4.383866453643863,0.9475026180375846,0.39390753260969863,0.29036342669521986,solar/10T,long,720,1,False,13.804872035980225
109
+ 785.4454925806762,785.4454925806762,12.765586920440358,0.9853369422383771,3.9144398636251387,1.4233827731386162,4.0981296541272005,28.025800480640623,1.0330403553349625,0.47054379258356926,0.3471361343125705,solar/H,short,48,1,False,15.446878433227539
110
+ 925.956040906326,925.956040906326,14.019861463560675,1.0689427358828523,3.816426779111453,1.4426351356970424,4.344065394344006,30.42952580810825,1.096142495558699,0.5050281108212255,0.36351955636351047,solar/H,medium,480,1,False,1.7459399700164795
111
+ 870.5718572587185,870.5718572587185,13.13551091722425,1.0009425558728013,4.74611759329406,1.416182464327352,4.653491232927522,29.505454703473365,1.023008010340251,0.45543215731735004,0.3414512439721066,solar/H,long,720,1,False,1.7467491626739502
112
+ 120766.18540145985,120766.18540145985,245.1385483196472,0.9556222475477342,1.0505508237221526,0.41990255091312156,4.932454005863179,347.51429524763415,0.5020398082870227,0.35414171872974937,0.2674402184962515,solar/D,short,30,1,False,0.383228063583374
113
+ 126767.26345498783,126767.26345498783,248.16975669099756,0.7203207912463434,0.6049548072536496,0.29623217951642333,7.0199124474043675,356.0439066393186,0.37388569564772584,0.26060584211355753,0.23968230505111732,solar/D,medium,300,1,False,0.21072673797607422
114
+ 1499053.6642335767,1499053.6642335767,964.9997718978102,1.0466186496951106,0.21367751072793112,0.1880083849830349,7.223819275428055,1224.3584704789594,0.24992217429722413,0.1969805796293306,0.14333357064262983,solar/W,short,8,1,False,0.19521784782409668
115
+ 174.07478384532038,174.07478384532038,5.645749903211029,1.3137964998592462,23.571298853379176,1.495042193883196,18.72930139273892,13.19374032809955,1.5532520680255837,0.6646540324915514,0.5388081798061642,temperature_rain_with_missing,short,30,1,False,148.82867217063904
116
+ 136.41180874434974,136.41180874434974,4.972576538743191,1.3604024471132912,11.637067980568835,1.4870161335060779,20.00906087837453,11.679546598406539,1.48352436114302,0.6316117128964759,0.5041733289374652,temperature_rain_with_missing,medium,300,1,False,57.88136410713196
117
+ 135.80795231038311,135.80795231038311,4.890168275642155,1.4418042680898164,8.553273235150042,1.5118535109055917,21.749292958554523,11.653666904042826,1.5531011335426899,0.6517198367390733,0.5201192436424876,temperature_rain_with_missing,long,450,1,False,60.169734954833984
118
+ 136457.65333333332,136457.65333333332,221.83609375,0.32657253109089374,0.021253007253011068,0.021217020352681477,2.5987016673067598,369.40175058238873,0.03462841659478746,0.0207953336929897,0.016516423371917405,us_births/D,short,30,1,False,0.11599421501159668
119
+ 151808.4622222222,151808.4622222222,266.76173611111113,0.397664553475571,0.02541241963704427,0.025538018544514974,2.760757663512848,389.6260543421374,0.03692301500817705,0.02527974573637926,0.01993901149193979,us_births/D,medium,300,1,False,0.029668092727661133
120
+ 159375.55555555556,159375.55555555556,279.9718923611111,0.4192464910990378,0.02674102783203125,0.02687063429090712,2.8863415016784497,399.2186813709443,0.03783206281903382,0.026531609650620486,0.020614824808756753,us_births/D,long,450,1,False,0.028224706649780273
121
+ 1955763.5714285714,1955763.5714285714,1076.3370535714287,0.9789676606037326,0.014646284282207489,0.014642352504389626,5.710773030098039,1398.486171339771,0.018984312648179066,0.014611169962620537,0.011395830265344891,us_births/W,short,8,1,False,0.03840970993041992
122
+ 2619864.8,2619864.8,1203.62734375,1.101360692902433,0.016394704580307007,0.016350379586219786,10.24590246736068,1618.5996416655973,0.022089572809943413,0.016426306519161712,0.014160527609022311,us_births/W,medium,80,1,False,0.025742292404174805
123
+ 7799478.4,7799478.4,2257.853125,2.0747899748083505,0.03013435999552409,0.03079215486844381,10.863824802082297,2792.7546258130164,0.03788651148340058,0.030630037296327694,0.02265684680982679,us_births/W,long,120,1,False,0.022977113723754883
124
+ 43295669.333333336,43295669.333333336,5612.541666666667,0.6328374135113913,0.01735191543896993,0.01754515866438548,3.649857761447695,6579.944477982572,0.020437262687119165,0.017432516150841005,0.012520092612376525,us_births/M,short,12,1,False,0.02510213851928711
125
+ 1677908104.5333333,1677908104.5333333,37338.725,3.4207328844905907,0.11946992079416911,0.1286113977432251,11.074367317822654,40962.27660339856,0.1328235738906753,0.12107390775759834,0.08581131590333385,us_births/M,medium,120,1,False,0.022860050201416016
126
+ 1236509582.2222223,1236509582.2222223,29153.81388888889,1.8556308909097659,0.09472160339355469,0.10113349490695529,12.458800119696747,35164.03819560863,0.11902592573192787,0.09868205885337385,0.07676771339265283,us_births/M,long,180,1,False,0.022637367248535156
embedl_chronos_2_ctx2048_gifteval.csv ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MSE[mean],MSE[0.5],MAE[0.5],MASE[0.5],MAPE[0.5],sMAPE[0.5],MSIS,RMSE[mean],NRMSE[mean],ND[0.5],mean_weighted_sum_quantile_loss,dataset,term,prediction_length,target_dim,to_univariate,elapsed_s
2
+ 60.32195129610016,60.32195129610016,4.080834694399748,0.8271355677911729,0.11158949982679024,0.0940758013775785,7.266265519332134,7.766720755640708,0.13747885649015573,0.07223492448907415,0.05808633146322965,LOOP_SEATTLE/H,short,48,1,False,268.4044370651245
3
+ 70.79225764318886,70.79225764318886,4.428027545310887,0.9058218343773288,0.11413741451298859,0.10180850821259836,7.6233928527227075,8.413813501806946,0.14871320774273267,0.07826488905357128,0.06318524622242702,LOOP_SEATTLE/H,medium,480,1,False,53.720733880996704
4
+ 63.39277605779154,63.39277605779154,4.17211297622119,0.8711350283668801,0.12048523978019113,0.096999927857999,7.0193697370509405,7.96195805425974,0.14229085270948802,0.07456124598260369,0.05957636404738526,LOOP_SEATTLE/H,long,720,1,False,53.23000192642212
5
+ 45155.90888888889,45155.90888888889,88.41213975694444,0.7945370838010614,0.3164029133036399,0.2199932098388672,9.705156505933152,212.49919738410517,0.3769206247533596,0.1568211050356724,0.12983454214965554,M_DENSE/H,short,48,1,False,49.866761207580566
6
+ 41543.91111111111,41543.91111111111,84.1177951388889,0.7221944831229914,0.30096270104217476,0.20564815945095485,8.895791681794883,203.82323496380658,0.3546266785073304,0.14635433638741574,0.12199187160737636,M_DENSE/H,medium,480,1,False,10.090285062789917
7
+ 37804.34172839506,37804.34172839506,82.83612654320987,0.7180182918552563,0.30129851156382553,0.20494942370756172,7.581178951313691,194.43338635222878,0.3365929342566805,0.14340158045247717,0.11851380835553756,M_DENSE/H,long,720,1,False,7.515356063842773
8
+ 9169.257777777777,9169.257777777777,50.10467013888889,0.7376081015979102,0.13068150661007574,0.10760911729600695,8.33206800448352,95.75624145598958,0.16576821816385917,0.08673859546198807,0.07158202148395039,M_DENSE/D,short,30,1,False,7.374182939529419
9
+ 16896.707555555557,16896.707555555557,62.64772222222222,0.8890109940070556,0.16022997791798654,0.13387973361545139,8.121625536989365,129.98733613531573,0.23373241708315715,0.1126479238293735,0.09198398364148361,M_DENSE/D,medium,300,1,False,2.4673192501068115
10
+ 18282.47940740741,18282.47940740741,69.17469444444444,1.083148066740609,0.17491511785605135,0.15266239872685186,12.936646817702536,135.21271910366795,0.24108746845445167,0.1233401123450148,0.10837710625353794,M_DENSE/D,long,450,1,False,2.4655821323394775
11
+ 16.688259399563112,16.688259399563112,2.727589869237208,0.5442834101746138,1122728590701.1133,0.3973172575562865,3.9238519258746676,4.085126607531658,0.38197680916706295,0.25504131819237896,0.20067737249860496,SZ_TAXI/15T,short,48,1,False,88.88050174713135
12
+ 16.362720352564104,16.362720352564104,2.750389372996795,0.5369406798971756,9438253956195.773,0.4058467506343483,3.9655058138572605,4.045085951196106,0.37646276632514436,0.25596963929122096,0.20263612305163953,SZ_TAXI/15T,medium,480,1,False,12.803070783615112
13
+ 15.7665442485755,15.7665442485755,2.723693465099715,0.5137526749819027,5897715714389.917,0.405154288528312,4.195133256060775,3.9707107989093715,0.36752191845161164,0.25210021536761446,0.20277163459747963,SZ_TAXI/15T,long,720,1,False,12.76122260093689
14
+ 2022184.23059418,2022184.23059418,175.438398083639,0.7112499578961117,2.0597673565332486,0.7877882107790343,20.156204036653726,1422.0352423882398,4.46483896895309,0.5508331812501459,0.43017565318343354,bitbrains_fast_storage/5T,short,48,2,True,2923.2385745048523
15
+ 3255073.0522204465,3255073.0522204465,284.98854236736236,1.0033831232349615,4.516513057617574,0.8295812642727689,25.987540671981147,1804.1821006263326,5.481603548027269,0.865873907321067,0.615741447760455,bitbrains_fast_storage/5T,medium,480,2,True,381.85714769363403
16
+ 4405687.635241429,4405687.635241429,376.0123603109659,0.92007215801216,5.1598039929214075,0.8439639341708091,30.94025604737074,2098.972995357832,5.546959027552447,0.9936884186271496,0.7001567976227927,bitbrains_fast_storage/5T,long,720,2,True,413.0647962093353
17
+ 1893463.4680527858,1893463.4680527858,137.75741400642843,1.696062838904737,1.3489430289916045,0.7480539841970828,62.22515460307488,1376.0317830823478,5.630324812406259,0.5636635691916274,0.4557282670312216,bitbrains_rnd/5T,short,48,2,True,1482.8715159893036
18
+ 2713247.6680932892,2713247.6680932892,187.99249108715443,4.437068021500763,1.9406027292293004,0.7891735948175739,168.50207585715933,1647.1938768989185,6.930584651540481,0.79098027961735,0.6942129072611744,bitbrains_rnd/5T,medium,480,2,True,167.95872497558594
19
+ 3077318.378956846,3077318.378956846,208.87232387584265,3.3649044563203643,2.7731620078169303,0.747471578646139,122.85663684922862,1754.2287134113517,6.720054978427056,0.8001428144383274,0.6732582042711732,bitbrains_rnd/5T,long,720,2,True,167.50980925559998
20
+ 408822.2577777778,408822.2577777778,347.6684375,1.177387187106233,0.016685493257310655,0.016898833380805122,18.21204658372672,639.392100184056,0.02465879758083393,0.013408181963914563,0.010491749803026322,bizitobs_application,short,60,2,True,2.4939768314361572
21
+ 3058071.466666667,3058071.466666667,969.9816666666667,1.960651262617157,0.02757852554321289,0.028291409810384114,23.43243971583195,1748.734247010296,0.06866764704767869,0.0380883252233772,0.031459966083419104,bizitobs_application,medium,600,2,True,0.34143710136413574
22
+ 6348167.9644444445,6348167.9644444445,1522.44625,2.9876105118391467,0.043120464748806424,0.044362174140082464,46.83215378001565,2519.557096881205,0.09716924626917135,0.05871466647092278,0.052132046910475745,bizitobs_application,long,900,2,True,0.17759203910827637
23
+ 21.353329613095237,21.353329613095237,2.8051722935267858,0.29321487569362775,0.15737161308720693,0.21370996747698104,2.812131232904785,4.6209663072884695,0.15870268725232964,0.09634097104025699,0.07671205672778682,bizitobs_l2c/5T,short,48,7,True,12.117801666259766
24
+ 197.85395408163265,197.85395408163265,9.559813456632654,0.9179134538628927,0.6119116069945572,0.8868891501913265,7.834622925693203,14.066056806427047,0.7400814383414605,0.5029867709639864,0.39754416368313517,bizitobs_l2c/5T,medium,480,7,True,4.263582468032837
25
+ 296.645,296.645,12.012223462301588,1.13198608826466,0.8453102985206058,1.1854041883680555,9.526668900316052,17.22338526538845,0.9670673336443351,0.6744683891018982,0.5317144534821497,bizitobs_l2c/5T,long,720,7,True,3.041555643081665
26
+ 61.18483382936508,61.18483382936508,4.791519407242063,0.48200901271680996,0.4276565076064149,0.6177100529746403,3.5196995673357123,7.822073499358408,0.42162979429186953,0.2582751673436307,0.20417671354336595,bizitobs_l2c/H,short,48,7,True,3.4553964138031006
27
+ 70.14037388392858,70.14037388392858,4.863812837146577,0.49951262979393424,0.5376768540331992,0.7604730515252976,3.843153785216106,8.374985007982318,0.5071180631050555,0.29451125499668296,0.23382497060598084,bizitobs_l2c/H,medium,480,7,True,0.5786750316619873
28
+ 83.91390128968254,83.91390128968254,5.3495977492559526,0.5708179524175101,0.622460328100624,0.7841582767547123,5.321204384814721,9.160453115958978,0.5595469150185914,0.32676887041446356,0.26865998834406335,bizitobs_l2c/H,long,720,7,True,0.5729191303253174
29
+ 2286.44664021164,2286.44664021164,19.750485904431216,0.8836036318288045,0.17881579202318948,0.09064908466641865,17.89827332700696,47.81680290663147,0.035424217299402413,0.014631791795313138,0.01164030629118434,bizitobs_service,short,60,2,True,52.707507848739624
30
+ 14642.177777777777,14642.177777777777,34.219957837301585,1.0857947189660857,0.18218302408854167,0.0978180416046627,19.977745431176746,121.00486675244834,0.09107111421085591,0.025754746665414684,0.025486470461912183,bizitobs_service,medium,600,2,True,7.088638544082642
31
+ 131725.03026455027,131725.03026455027,76.82604497354497,1.421597522186465,0.20624741650132275,0.11987543661127646,28.5710399256934,362.9394305728578,0.26887713305032557,0.05691519018332573,0.05247486934720328,bizitobs_service,long,900,2,True,3.567230224609375
32
+ 1.4244168219345252,1.4244168219345252,0.44362414448610005,0.8286562780607141,0.8874845467674992,1.92543132159123,16.859058620365634,1.1934893472228922,2.861865025978563,1.0637651913178958,0.9361022363015182,car_parts_with_missing,short,12,1,False,220.64679670333862
33
+ 2440618.0250626565,2440618.0250626565,286.2075814536341,38.387547699457464,0.11715753264504904,0.3910824730282738,553.398642902232,1562.247747658052,0.5878033178282029,0.10768699536819887,0.08834517164748196,covid_deaths,short,30,1,False,21.858596801757812
34
+ 127591.2500365991,127591.2500365991,47.55597805813626,0.9139026764473377,0.14738890818046982,0.15843166110751866,11.115803552470398,357.19917418241477,0.704109984261979,0.09374220709977728,0.07882087903027259,electricity/15T,short,48,1,False,765.2699828147888
35
+ 259104.26536036035,259104.26536036035,52.82265329391892,0.8133962536001978,0.12220671128178384,0.13046011599978885,7.580450852481841,509.02285347551964,0.8770976521367264,0.09101875263043915,0.07365814556376649,electricity/15T,medium,480,1,False,711.0743458271027
36
+ 332567.0005135135,332567.0005135135,58.80072194069069,0.8665999338384879,0.12884028370693867,0.13339763359550957,7.701460285485795,576.6862236203615,0.9097932401023555,0.0927653499314316,0.07453119930735658,electricity/15T,long,720,1,False,759.7657370567322
37
+ 1701859.617027027,1701859.617027027,167.38729852899775,0.9095061234408909,0.18244689441647802,0.12699204797143335,11.017104028678618,1304.5534167012968,0.6158423787675209,0.07901875904953479,0.06569593979518935,electricity/H,short,48,1,False,648.6146214008331
38
+ 5439156.821621622,5439156.821621622,242.1826682150901,1.0765189219628089,0.21032668452181774,0.13272444166578687,9.535695553037844,2332.1999960598623,0.9103344744041979,0.09453187220300956,0.07569855478963522,electricity/H,medium,480,1,False,257.5783131122589
39
+ 8101053.6567927925,8101053.6567927925,275.161493993994,1.1920121630737377,0.29568968891294456,0.14337104096283784,10.508151482991648,2846.2349967620016,1.1225542568358324,0.10852361338809499,0.08696483711087173,electricity/H,long,720,1,False,162.2537820339203
40
+ 1376449496.6636395,1376449496.6636395,4687.837549549549,1.544622276983426,0.25295274581489374,0.09980530115076014,13.230057969119951,37100.53229623046,0.6096849857286492,0.0770367429414412,0.06157496626713115,electricity/D,short,30,1,False,152.00345039367676
41
+ 1452972494.4492292,1452972494.4492292,5624.9927386547115,2.154534054118349,0.25016053397074933,0.15363805801859987,18.902233448734783,38117.8763108496,0.6348233885474837,0.09367985041421065,0.07414774859057187,electricity/D,medium,300,1,False,30.42624306678772
42
+ 2072189249.5048497,2072189249.5048497,6667.368500624867,2.884108464303918,0.5064741683915296,0.23841393890785503,30.54254912434461,45521.305445965074,0.7809813441823912,0.11438798520306691,0.09288497721265143,electricity/D,long,450,1,False,30.64182734489441
43
+ 56549488961.037834,56549488961.037834,30599.836036036035,1.5342215558358197,0.17030637992872683,0.09867104195259713,14.052588929666532,237801.36450625726,0.5425842390959146,0.06981872785526211,0.054746453548336516,electricity/W,short,8,1,False,91.33909940719604
44
+ 785120021708.8,785120021708.8,102915.65904596704,3.7330185335145725,0.4404802075707662,0.3142125162619254,51.084046219006275,886069.9869134492,2.0483520696614383,0.23791292597744776,0.19467737858050074,electricity/W,medium,80,1,False,30.43886399269104
45
+ 1485402801207.9312,1485402801207.9312,138462.92492364516,4.454223508147038,0.39387405780762913,0.35760184901567343,67.86189790156445,1218771.0208271,2.8908116081437463,0.32842119136962433,0.3061410975718861,electricity/W,long,120,1,False,30.455042123794556
46
+ 4.974590192522322,4.974590192522322,1.0798060825892857,0.6836803952560886,0.4765326549355085,0.23681202843075708,4.811015861182387,2.2303789347378444,0.42163445853804915,0.20412829670673824,0.1577511885113291,ett1/15T,short,48,7,True,13.023045063018799
47
+ 10.841607142857143,10.841607142857143,1.6467723834325396,1.0261777430847592,0.8554108152001034,0.3795539977058532,7.0068143208581,3.292659585025021,0.6275841724986638,0.313876444516298,0.24071311396509765,ett1/15T,medium,480,7,True,9.722506284713745
48
+ 10.027526661706348,10.027526661706348,1.6109551711309524,1.0244679159717691,0.8768246355543847,0.3801137385292659,7.808983212249964,3.1666270165124195,0.6035622403263889,0.3070496484376108,0.2420996003439676,ett1/15T,long,720,7,True,6.442141532897949
49
+ 105.92424665178571,105.92424665178571,5.014470563616071,0.8208479386430296,0.4755831400553385,0.2590058099655878,5.646405364429289,10.291950575657935,0.48036743947973554,0.2340458562527416,0.17895498256756442,ett1/H,short,48,7,True,11.793410062789917
50
+ 157.1280505952381,157.1280505952381,7.089840262276786,1.312372497763794,2596937961513.7554,0.4405667986188616,9.485883827586294,12.53507281970225,0.6004002737784249,0.3395865421559947,0.26411616485378736,ett1/H,medium,480,7,True,2.3700668811798096
51
+ 167.0397156084656,167.0397156084656,7.220907738095238,1.3883893854271658,2937346854439.791,0.479250404317543,10.038015381095489,12.924384534996845,0.6189207831075104,0.345793632177014,0.2730458460166651,ett1/H,long,720,7,True,1.7835206985473633
52
+ 37387.70476190476,37387.70476190476,132.26724950396826,1.7010577513534704,1.2821217370411706,0.47592090425037203,12.068641565640341,193.3590048637631,0.5078638400583914,0.3474043181716619,0.26841593325245294,ett1/D,short,30,7,True,1.7224183082580566
53
+ 48871.55428571429,48871.55428571429,153.88699404761905,1.9492442994206292,1.4132357933407738,0.5833780924479167,17.43279936133701,221.06911653533672,0.6097860616608942,0.4244742346275743,0.3436091473773189,ett1/D,medium,300,7,True,0.580878734588623
54
+ 73474.61079365079,73474.61079365079,196.64728174603175,2.829997005584863,1.678988846383148,0.7871332465277778,18.668099712712884,271.0620054409153,0.6885593898443148,0.4995289993274443,0.40317817471092976,ett1/D,long,450,7,True,0.5729584693908691
55
+ 1205588.857142857,1205588.857142857,865.9458705357143,1.6916411518146681,0.7409751074654716,0.5835718427385602,12.594752398244506,1097.99310432391,0.43691766283423206,0.34458053006479145,0.27140608315111714,ett1/W,short,8,7,True,1.1486811637878418
56
+ 10322916.57142857,10322916.57142857,1910.6883928571428,2.8954225955561297,1.135126713344029,0.9380687168666295,17.268887729350485,3212.9295932884324,1.1927382442022274,0.7093062741476069,0.5060603137722048,ett1/W,medium,80,7,True,0.5790762901306152
57
+ 8.578445289248512,8.578445289248512,1.7821911039806548,0.7632312952359197,0.11032389789208571,0.12838274637858074,5.662705892179135,2.9288983064026843,0.1390452220314557,0.08460695177219492,0.06772190980853815,ett2/15T,short,48,7,True,12.938806533813477
58
+ 11.610900297619047,11.610900297619047,2.088803943452381,0.8570347264304679,0.13010141182057278,0.1572035144624256,6.784632521720836,3.407477116228229,0.1815906235046915,0.111316143155918,0.08922584313862948,ett2/15T,medium,480,7,True,9.671704769134521
59
+ 11.067760416666667,11.067760416666667,2.0956463913690477,0.8663683210526172,0.13369630490588283,0.16185457744295634,7.413977845079776,3.326824374184286,0.17729249288911916,0.11168078959112612,0.09094797536441589,ett2/15T,long,720,7,True,6.44998574256897
60
+ 112.05271577380952,112.05271577380952,6.584425571986607,0.7461065301171731,0.11810885884399687,0.11022015526181175,5.0808923131212165,10.585495537470578,0.13425353653334174,0.0835088367805408,0.06597403147240787,ett2/H,short,48,7,True,11.791606664657593
61
+ 266.4283668154762,266.4283668154762,10.173718843005952,1.063777039358292,0.1715022880596034,0.16944865272158668,8.402083326957518,16.322633574747556,0.21995798411258494,0.13709740388327124,0.11031911821531985,ett2/H,medium,480,7,True,2.3653740882873535
62
+ 220.25064484126983,220.25064484126983,9.553048528439154,1.0480305106777725,0.17506248485848427,0.1797920994026951,9.446820651515546,14.84084380489431,0.2032339335510586,0.1308216470278165,0.10801168318302909,ett2/H,long,720,7,True,1.7759509086608887
63
+ 120872.46984126983,120872.46984126983,215.56750992063493,1.4492745979186616,0.46187627883184523,0.14633210197327629,13.34007684416472,347.6671825773463,0.19897910147821746,0.12337497348448201,0.09931920636026954,ett2/D,short,30,7,True,1.7357568740844727
64
+ 521676.73904761905,521676.73904761905,545.3489285714286,5.336837519737026,4.3082784215998045,0.7738421921502976,172.94682986886156,722.2719287412596,0.45902803780505935,0.34658753668787606,0.3238310817310887,ett2/D,medium,300,7,True,0.5815854072570801
65
+ 997517.7346031746,997517.7346031746,728.3281746031746,10.866365041124984,4.029540459133832,0.9214789496527778,292.4938339007687,998.7580961389873,0.5599832833535493,0.4083587448751215,0.3544422710102986,ett2/D,long,450,7,True,0.5800213813781738
66
+ 3517488.5714285714,3517488.5714285714,1409.0283203125,1.0507102407302484,0.17016570908682688,0.19138523510524205,9.95043850611818,1875.4968865419562,0.1573254356611697,0.11819587435349824,0.09886703633535528,ett2/W,short,8,7,True,1.163468360900879
67
+ 67328365.71428572,67328365.71428572,5753.082142857143,12.518838889673892,8.192157992356115,0.888749258858817,216.9439042746359,8205.386384216512,0.657503063411222,0.4609982950054771,0.3493499579459631,ett2/W,medium,80,7,True,0.5863761901855469
68
+ 29.204728193468377,29.204728193468377,2.333118508422902,0.7527392663459169,0.6657359433127379,1.0965526011523357,7.180356990099381,5.404139912462331,1.6579302779041432,0.7157749206553031,0.5819945562809309,hierarchical_sales/D,short,30,1,False,68.20676255226135
69
+ 30.902859077406955,30.902859077406955,2.4238814778816473,0.7650984018234922,0.734994548102463,1.0836688080624963,7.157424303343086,5.559034005778968,1.6923427637147206,0.7379048724887849,0.6003237493711876,hierarchical_sales/D,medium,300,1,False,9.769366025924683
70
+ 42.31288367244508,42.31288367244508,2.4672335587911665,0.770336267393493,0.6558297254596192,1.0588919105439945,7.511388912652187,6.504835407021847,1.8547597839798857,0.7034959835558002,0.577556235398814,hierarchical_sales/D,long,450,1,False,9.787003993988037
71
+ 478.5818657309322,478.5818657309322,8.972896252648304,0.7232622981812142,0.5011142360343861,0.4622536675404694,6.830416332660106,21.876514021455343,1.0043614593239312,0.4119500559290916,0.3473977555825838,hierarchical_sales/W,short,8,1,False,21.32830262184143
72
+ 1057.878813559322,1057.878813559322,10.931613314353813,0.8113093360800435,0.5539573538776285,0.49427366095074154,7.841496943385683,32.525049017016435,1.3774442816859134,0.4629566658479249,0.39014891405127705,hierarchical_sales/W,medium,80,1,False,3.6041998863220215
73
+ 1105.3093926553672,1105.3093926553672,11.449494615112995,0.8636371350101825,0.51259597784904,0.49414524574064267,8.186402312598478,33.24619365664839,1.3539472422357879,0.4662792925777756,0.3970829820483577,hierarchical_sales/W,long,120,1,False,3.596062660217285
74
+ 4830.345284658844,4830.345284658844,23.89738836375489,0.8724463086143227,0.19656840908377132,0.19437503607466863,7.668307375064278,69.50068549776213,0.2523036274008392,0.0867530690726224,0.06920401660487539,hospital,short,12,1,False,23.305161714553833
75
+ 1072.4292658730158,1072.4292658730158,7.283138020833333,0.30938779831860247,0.39038594625776774,0.5606333899119543,3.675333882023587,32.74796582801771,0.20340591151808904,0.04523741522205346,0.038242807969642266,jena_weather/10T,short,48,21,True,37.09813952445984
76
+ 1648.0738816738817,1648.0738816738817,10.718645156926407,0.6110828112395602,0.8654515626911825,0.6547067353219697,6.643194387063286,40.59647622237528,0.24913988056666198,0.06578014208930838,0.05448763570071253,jena_weather/10T,medium,480,21,True,20.804747343063354
77
+ 1557.4242063492063,1557.4242063492063,10.67635478670635,0.6384735133994298,0.8836704778470359,0.646110607328869,6.949477013963261,39.46421424973778,0.2414882939808763,0.06533044563007888,0.054255057774480434,jena_weather/10T,long,720,21,True,15.18236756324768
78
+ 1131.263575605681,1131.263575605681,9.382640357403927,0.5607441072688849,2.215420945129705,0.6305045348560202,6.430793657558427,33.6342619304435,0.20617586036724045,0.05751498136646162,0.04721746820226057,jena_weather/H,short,48,21,True,33.3592483997345
79
+ 1137.6950396825396,1137.6950396825396,10.912154327876983,0.9160921391228454,3.3989443243222848,0.7526535760788691,8.145908614908024,33.729735244773856,0.2063982320356967,0.066773407636618,0.055123228217914336,jena_weather/H,medium,480,21,True,3.5230824947357178
80
+ 1093.1097222222222,1093.1097222222222,11.795741360780424,1.023084738063523,3.857215073529412,0.6882920361069775,8.157628652563938,33.06220988110478,0.199071133955337,0.07102343179656699,0.05955446036101824,jena_weather/H,long,720,21,True,3.5010862350463867
81
+ 936.4406746031746,936.4406746031746,15.595247395833333,1.8100485070741585,0.6597147520423541,0.5261158292255704,19.602749578911887,30.601318184077865,0.1842699510035825,0.09390887857289057,0.07567416063726867,jena_weather/D,short,30,21,True,3.4687860012054443
82
+ 9149.0526984127,9149.0526984127,44.80269841269841,4.628037125353767,0.7257229195187447,0.7231632874503968,57.25892876150195,95.65068059565859,0.49386856675922886,0.23132762165656384,0.2271383116274221,jena_weather/D,medium,300,21,True,1.7306954860687256
83
+ 4894.848857797299,4894.848857797299,23.87829691456078,0.9812529825329169,0.9028475117651915,0.5248228536630952,7.920405207756871,69.96319645211544,1.4644564025877087,0.4998159971629131,0.3980291838356454,kdd_cup_2018_with_missing/H,short,48,1,False,441.83955454826355
84
+ 5558.771591273097,5558.771591273097,27.269402403211156,1.10309114194541,0.9893672154266436,0.6111954601158768,9.08494616464808,74.55716995214543,1.560616582985513,0.5707979745726885,0.44564532633076215,kdd_cup_2018_with_missing/H,medium,480,1,False,45.64277243614197
85
+ 4562.020451895642,4562.020451895642,26.175888975632905,1.0857579316650248,0.9311658809681649,0.6735609479224035,7.881129899156824,67.54273056292321,1.5848253580048002,0.614192116178282,0.4760473208724757,kdd_cup_2018_with_missing/H,long,720,1,False,45.725213050842285
86
+ 3025.6104950046547,3025.6104950046547,21.826542915503026,1.2337384890553436,0.498088375781237,0.4875694836491528,9.851658192106967,55.00554967459788,1.2321827387706386,0.4889377451297328,0.3913563029384943,kdd_cup_2018_with_missing/D,short,30,1,False,44.40973258018494
87
+ 2438.4546726243025,2438.4546726243025,27.531330214176094,1.5514879458352826,1.137338128641469,0.8250900181309503,11.848584994911391,49.38071154432976,1.3479900818779817,0.751547697653183,0.569557467921824,kdd_cup_2018_with_missing/D,medium,300,1,False,22.642404556274414
88
+ 6256934.369170947,6256934.369170947,1343.079638939671,5.806616891569604,0.22286674344758614,0.23081030383070889,61.99051119582257,2501.3864893636382,0.40110891882229605,0.21536904599032347,0.18122495761602173,m4_yearly,short,6,1,False,1803.7607402801514
89
+ 2315681.870666667,2315681.870666667,799.51441796875,2.110572034935495,0.14607967646916709,0.14552812671661378,19.80426910763396,1521.7364655769627,0.2547118869850777,0.1338246343432301,0.10960719204169607,m4_quarterly,short,8,1,False,1981.2818565368652
90
+ 1961271.443925926,1961271.443925926,611.42615234375,1.3270928112197153,0.1552487178378635,0.14237948562480784,13.337834779268087,1400.4540134991673,0.2910624207270569,0.1270753443394719,0.10304306799249502,m4_monthly,short,18,1,False,3963.0548298358917
91
+ 411474.9929290765,411474.9929290765,360.8229322905507,4.4918706613991795,0.07830163838394914,0.0806203204200537,50.29779973420476,641.4631656837955,0.11686464781538936,0.06573634646800189,0.053054205608866506,m4_weekly,short,13,1,False,30.12993025779724
92
+ 404049.1250126736,404049.1250126736,242.6841795092771,4.962934069291346,0.04901378301162614,0.043867030951600404,59.567469292811005,635.6485861013722,0.09819013959949006,0.037487998849734534,0.031116948837927833,m4_daily,short,14,1,False,349.1600298881531
93
+ 3143193.76489533,3143193.76489533,309.1653834541063,1.8255610864330847,0.10610583515750806,0.09457982258328301,36.98670044618554,1772.9054585327808,0.2420407279306039,0.04220789896157486,0.03460213229869968,m4_hourly,short,48,1,False,12.659619331359863
94
+ 81998374.09082125,81998374.09082125,1389.3281803542673,4.312074702748186,0.1596443114841234,0.1716948627465781,121.47472512519164,9055.295361876455,1.2793710768523985,0.196290261020585,0.17844872959241637,m4_hourly,medium,480,1,False,12.756616115570068
95
+ 966420661.3848631,966420661.3848631,4837.759312936125,33.395980176811484,0.4789796363392378,0.7713293201489533,272.2272875717267,31087.307078369835,4.52775851618681,0.7046028745168882,0.3809455447332689,m4_hourly,long,720,1,False,22.97888493537903
96
+ 153.49943378163817,153.49943378163817,7.401019047118707,0.7132062692680602,0.5695946485797843,0.43168267182100495,5.224885140293082,12.389488842629392,0.570192982695028,0.3406120445372408,0.2690843933962466,restaurant,short,30,1,False,66.84209060668945
97
+ 1262.5114583333334,1262.5114583333334,13.242293294270834,2.9422750561183277,0.28274976094563803,0.3399847920735677,28.52597719131596,35.53183724961789,1.1508846745231918,0.42892103498198453,0.35449830766097523,saugeenday/D,short,30,1,False,1.7130980491638184
98
+ 1756.6952083333333,1756.6952083333333,16.586925455729165,3.7154908694822955,0.36034657796223957,0.4299744160970052,41.740529978761685,41.912947979512644,1.3097387216714205,0.5183252333733475,0.43462935804332004,saugeenday/D,medium,300,1,False,0.7000010013580322
99
+ 1759.0444444444445,1759.0444444444445,17.553761574074073,3.9388244950951234,0.37712162724247683,0.4491190592447917,38.623897828491785,41.94096379966064,1.2896549619012811,0.539765748402278,0.4450485046577626,saugeenday/D,long,450,1,False,0.5191171169281006
100
+ 982.4861328125,982.4861328125,14.667037963867188,1.1898997383299317,0.3640251398086548,0.3795949935913086,7.699001945628931,31.344634832974208,0.9461638662910807,0.4427367369528818,0.3469456814756524,saugeenday/W,short,8,1,False,1.6490468978881836
101
+ 983.29703125,983.29703125,14.51047119140625,1.1901692466277018,0.34250125885009763,0.37724369049072265,9.195998982501113,31.357567368180842,0.9732621334215311,0.4503695067567675,0.3627968497381879,saugeenday/W,medium,80,1,False,0.4213273525238037
102
+ 1111.7559895833333,1111.7559895833333,15.143340386284722,1.2410494863118577,0.34913455115424263,0.3752008226182726,9.203812581584874,33.3430051072685,1.0105885671969754,0.458977426129341,0.3693692249585078,saugeenday/W,long,120,1,False,0.25170111656188965
103
+ 406.82547433035717,406.82547433035717,12.41907464890253,0.7277442935051913,0.3554654348464239,0.3549341020129976,4.721878510546431,20.169915079899496,0.6055613598770944,0.37285787783505325,0.29225632407937674,saugeenday/M,short,12,1,False,0.5730688571929932
104
+ 355.05260416666664,355.05260416666664,11.479941813151042,0.6536835813557244,0.3559404373168945,0.3439465522766113,4.52210498985664,18.8428395993456,0.5954375356850994,0.3627684790814854,0.2891620712368275,saugeenday/M,medium,120,1,False,0.0870211124420166
105
+ 412.1998263888889,412.1998263888889,13.155147298177083,0.7581291825532782,0.34940372043185763,0.41529608832465276,4.769967432592019,20.302704903260768,0.6243573754209897,0.40455265835279,0.31081511167552395,saugeenday/M,long,180,1,False,0.08680272102355957
106
+ 20.66657459416819,20.66657459416819,1.9780920618061892,0.8638703163878845,5.152311983476325,1.4994432361166552,15.512752552333696,4.546050439025967,1.3224455804059672,0.5754267665653545,0.46542263292649605,solar/10T,short,48,1,False,246.62361240386963
107
+ 21.43535100088476,21.43535100088476,2.054267022989936,0.897886268662537,3.9826406994934445,1.4477706899054412,15.9764375965014,4.629832718455901,1.027378266851792,0.45585001058830216,0.3536692060961263,solar/10T,medium,480,1,False,135.34604597091675
108
+ 20.8364668079633,20.8364668079633,2.0112091237707825,0.8797603615749858,3.8640825745457965,1.4427931093338149,15.757744480917824,4.564697887918028,0.9865864234345793,0.43469067721917176,0.3473300686614633,solar/10T,long,720,1,False,98.34006881713867
109
+ 868.5568254578051,868.5568254578051,13.790185659425422,1.0648281529157002,4.238119198765003,1.4493225113288253,8.616462273824233,29.471288154028915,1.0863214831565624,0.5083108298577523,0.3805886511875539,solar/H,short,48,1,False,216.4261839389801
110
+ 979.4242700729927,979.4242700729927,14.739199361313869,1.1255090746620275,4.168697093547055,1.461060342533455,8.70318599282589,31.29575482510356,1.1273461334494692,0.5309403624541941,0.39485500695944176,solar/H,medium,480,1,False,22.870919942855835
111
+ 960.5567721005677,960.5567721005677,14.504572181670722,1.104285672570439,4.781847890488064,1.4400344687753446,8.822159513189089,30.99285033843399,1.0745786040982026,0.502899951370168,0.38047877572884514,solar/H,long,720,1,False,22.936800718307495
112
+ 115593.03163017031,115593.03163017031,246.55626520681264,0.9611074938439458,1.0243722437652067,0.423619090727646,5.579022494314174,339.98975224287324,0.49116938999369814,0.3561898250810973,0.26594841159043126,solar/D,short,30,1,False,22.44529700279236
113
+ 145624.42277372262,145624.42277372262,296.3054501216545,0.8582137438531532,0.5203053718065693,0.3701936492548662,8.022288690549612,381.60768175407924,0.4007305023244673,0.31115367312036224,0.29469363606548327,solar/D,medium,300,1,False,11.303316354751587
114
+ 1140687.8832116788,1140687.8832116788,860.1036724452555,0.9386176201488872,0.18788357198673444,0.17110376288420961,4.522930882059444,1068.0299074518834,0.2180116061764322,0.17556866319914907,0.12994932790050773,solar/W,short,8,1,False,11.30923080444336
115
+ 186.11899086113493,186.11899086113493,5.791365393051946,1.3616093992817186,21.860964601363744,1.5441158726526214,19.39672851590512,13.642543416135238,1.6060880622632792,0.6817968276343882,0.5517834656281697,temperature_rain_with_missing,short,30,1,False,5532.823097229004
116
+ 217.11571253964408,217.11571253964408,6.175315344890261,1.6011809216646014,5.511443229553131,1.6667719550454656,24.453332010474682,14.734846878730844,1.8716055718045745,0.7843824033102137,0.6226565931762355,temperature_rain_with_missing,medium,300,1,False,963.8469588756561
117
+ 211.14396235199993,211.14396235199993,6.599293390070515,2.129074762050156,30.414559465022244,1.5784656074257448,35.880554622457296,14.5307935898904,1.9365399927893034,0.8794974269618019,0.7121422543685708,temperature_rain_with_missing,long,450,1,False,924.5481903553009
118
+ 151887.06666666668,151887.06666666668,237.06036458333332,0.3489344160951907,0.022763643264770508,0.022653977076212566,3.190028204696897,389.7269129360541,0.03653373563626405,0.022222485545782444,0.017914781588144555,us_births/D,short,30,1,False,0.5983037948608398
119
+ 147737.92,147737.92,258.7394444444444,0.3862904870100537,0.02478695339626736,0.02487454308403863,3.0834641409316657,384.36690804490445,0.03642463063295656,0.024519511167085794,0.01943728619734918,us_births/D,medium,300,1,False,0.09518909454345703
120
+ 164212.49777777778,164212.49777777778,288.68604166666665,0.4325295527049804,0.027637928856743706,0.02781156751844618,3.326870632461376,405.2314126246604,0.038401860869875015,0.027357408290128272,0.021401707995972657,us_births/D,long,450,1,False,0.06513452529907227
121
+ 4426492.285714285,4426492.285714285,1711.424107142857,1.5553879101564771,0.023018900837217058,0.02317338969026293,20.177652397749572,2103.923070293751,0.02856054938026938,0.0232324144417564,0.0189803711488286,us_births/W,short,8,1,False,0.41193056106567383
122
+ 5016332.0,5016332.0,1782.83671875,1.631663356666079,0.024261820316314697,0.024349305033683776,17.77906709460438,2239.716946401933,0.030566169229037203,0.024330971349124438,0.019100428502057995,us_births/W,medium,80,1,False,0.06352925300598145
123
+ 13343169.066666666,13343169.066666666,2993.3859375,2.7506872122919477,0.03984387715657552,0.04086887836456299,21.983785871951355,3652.830281667445,0.049554298517371025,0.040608276017922044,0.03205514594515627,us_births/W,long,120,1,False,0.03497576713562012
124
+ 272898389.3333333,272898389.3333333,14176.31640625,1.5993255562770452,0.043917705615361534,0.045010507106781006,30.583517905952817,16519.636477033426,0.0513098782682072,0.04403154210490828,0.034525890559783806,us_births/M,short,12,1,False,0.06774663925170898
125
+ 2166998084.266667,2166998084.266667,43117.28333333333,3.9501268394281794,0.1375743865966797,0.14934345881144206,47.16832682415926,46551.02667253072,0.15094555878304586,0.13981136166428373,0.12182836647071318,us_births/M,medium,120,1,False,0.03513741493225098
126
+ 21195938565.68889,21195938565.68889,132161.14444444445,8.412013483343236,0.4339296552870009,0.5864700317382813,29.58661781664828,145588.2500948785,0.4927982431038995,0.4473491490307707,0.36178223449445757,us_births/M,long,180,1,False,0.03455615043640137
embedl_chronos_2_ctx2048_int8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59349243e073525d3a84f40ad9e01a9ab6f97a103ba215e7c743897e5a9da2ef
3
+ size 479740077
embedl_chronos_2_ctx512_gifteval.csv ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MSE[mean],MSE[0.5],MAE[0.5],MASE[0.5],MAPE[0.5],sMAPE[0.5],MSIS,RMSE[mean],NRMSE[mean],ND[0.5],mean_weighted_sum_quantile_loss,dataset,term,prediction_length,target_dim,to_univariate,elapsed_s
2
+ 62.470565745342455,62.470565745342455,4.193511924766444,0.851145395910496,0.11311459801611574,0.09668483633640491,7.492578753061858,7.903832345472825,0.13990587107903182,0.07422942606453518,0.06022601377308504,LOOP_SEATTLE/H,short,48,1,False,176.54235672950745
3
+ 74.89585268317853,74.89585268317853,4.720980170439886,0.9804322621842668,0.12255012346864115,0.10660985704546004,7.8943061119127895,8.654239000812176,0.15296270140842141,0.0834427937682683,0.06667511546834937,LOOP_SEATTLE/H,medium,480,1,False,18.77686595916748
4
+ 60.89152584279326,60.89152584279326,4.188757874312006,0.8753981255282274,0.1220927088540323,0.09720459404293516,7.404923119111551,7.803302239615819,0.13945546083739396,0.07485871260155146,0.060063008440050365,LOOP_SEATTLE/H,long,720,1,False,18.80730390548706
5
+ 42638.682222222225,42638.682222222225,88.18486979166667,0.7938013728996525,0.3101156069954588,0.2215880415174696,9.452565043927374,206.49136113218447,0.3662642202992917,0.15641798474931512,0.12959703763064825,M_DENSE/H,short,48,1,False,18.037124395370483
6
+ 39458.05777777778,39458.05777777778,83.29236979166667,0.7243078249644948,0.2964194160032402,0.20684772067599827,8.733097391765982,198.64052400700564,0.34560941620845537,0.1449182005646615,0.12043401754135319,M_DENSE/H,medium,480,1,False,3.6406545639038086
7
+ 36420.21530864198,36420.21530864198,82.3132561728395,0.72355592996943,0.298720336978312,0.2052063591097608,7.99821332889105,190.84081143361863,0.3303736559934231,0.1424964145470703,0.11728687350818771,M_DENSE/H,long,720,1,False,2.7580645084381104
8
+ 9871.471111111112,9871.471111111112,48.70052662037037,0.7175395372443298,0.13071300826132784,0.10424389874493634,7.614321450206478,99.35527721822889,0.1719986814354217,0.08430781533139861,0.0695814871458495,M_DENSE/D,short,30,1,False,2.5204598903656006
9
+ 17811.36888888889,17811.36888888889,58.278930555555554,0.8167948767432205,0.1513419919269965,0.12502708604600696,7.910740936899401,133.45924055264547,0.2399753068558917,0.10479232599698336,0.08776306915924952,M_DENSE/D,medium,300,1,False,0.859978199005127
10
+ 18407.54488888889,18407.54488888889,62.92596296296296,0.9503715934026241,0.15778831927928427,0.14533671513310184,11.894716095143686,135.67440764156257,0.24191067001088298,0.11219847667709383,0.10078322346356244,M_DENSE/D,long,450,1,False,0.8585433959960938
11
+ 17.24183783339057,17.24183783339057,2.7732573941222625,0.5532964994772325,1065725141683.4651,0.40074371272682124,4.008485191121634,4.15232920580613,0.38826053951933454,0.2593114270810458,0.20378336733521552,SZ_TAXI/15T,short,48,1,False,30.390495538711548
12
+ 16.621011952457266,16.621011952457266,2.7826426448985044,0.5418548840393728,11795580712543.398,0.41000804412059294,3.8158728024527404,4.0768875324758795,0.3794224342794328,0.2589713445972761,0.20386192550915064,SZ_TAXI/15T,medium,480,1,False,4.4212939739227295
13
+ 15.63398993945869,15.63398993945869,2.6922879384793448,0.507752290185081,7930611225661.265,0.40007077295895654,3.5224914303884636,3.953984059079992,0.36597372120863364,0.24919337576683767,0.1956734360037435,SZ_TAXI/15T,long,720,1,False,4.413610219955444
14
+ 2145486.50629918,2145486.50629918,177.20475159291382,0.7759579597950548,2.231658437116252,0.7770500858006043,20.25009655667844,1464.7479326830196,4.598946252944644,0.5563790944216875,0.43704136990797,bitbrains_fast_storage/5T,short,48,2,True,1288.052763223648
15
+ 3776429.4408527887,3776429.4408527887,280.7599621249448,1.0593464702775626,4.343459446920159,0.8290356789767737,26.069472289754653,1943.3037438477775,5.904293526397696,0.8530263125844232,0.629959959880906,bitbrains_fast_storage/5T,medium,480,2,True,144.2544481754303
16
+ 5353083.088744834,5353083.088744834,394.6183728224313,1.0052189955338107,5.60523403138492,0.8478726712053078,23.45829073954716,2313.6730730042295,6.114347239097239,1.042858555306127,0.7524241911246555,bitbrains_fast_storage/5T,long,720,2,True,145.8485987186432
17
+ 1926884.1797983432,1926884.1797983432,135.61892294148905,1.796407334947056,1.619424402774483,0.7068118074827355,63.43619961793657,1388.1225377459814,5.679796690033157,0.5549134811107646,0.45144444682782175,bitbrains_rnd/5T,short,48,2,True,517.0380952358246
18
+ 2408358.3966237544,2408358.3966237544,169.03899742186903,4.449610511527357,1.232156777153417,0.7649641312475006,167.21345672971492,1551.8886547119785,6.529586979460745,0.7112332661467808,0.641197396393943,bitbrains_rnd/5T,medium,480,2,True,57.9516875743866
19
+ 4500540.843526871,4500540.843526871,271.59561107090553,3.434055416318979,5.259534156586114,0.7415298880757549,123.2251544107656,2121.4478177713613,8.126788633828891,1.0404215963075494,0.7916302855136702,bitbrains_rnd/5T,long,720,2,True,58.37142992019653
20
+ 2802368.5688888887,2802368.5688888887,565.9175,1.9936235261921285,0.0280125003390842,0.028674791124131946,25.2735560698328,1674.0276487826861,0.06456055513380421,0.021825175938105165,0.017631395831362518,bizitobs_application,short,60,2,True,0.874244213104248
21
+ 14871065.6,14871065.6,1449.9433333333334,4.708156734757474,0.06515492121378581,0.06573741912841796,30.654530230600265,3856.3020628576282,0.15142563223329142,0.056935007261787705,0.046456824646440166,bizitobs_application,medium,600,2,True,0.12370491027832031
22
+ 6786117.973333334,6786117.973333334,1530.7218055555556,3.1217335523161416,0.044935006035698784,0.046035232543945315,49.74931237604577,2605.0178451084234,0.10046512573192193,0.05903382157035964,0.05150312259706699,bizitobs_application,long,900,2,True,0.06679749488830566
23
+ 24.17138671875,24.17138671875,2.982733444940476,0.30893063914115837,0.17073325910128442,0.217952637445359,3.082270801405137,4.916440452069973,0.16885046537320594,0.10243913969310438,0.08283304342958236,bizitobs_l2c/5T,short,48,7,True,4.53303074836731
24
+ 256.66532738095236,256.66532738095236,10.678336920705782,1.0420002446154453,0.7290047796513263,0.9762074996014031,14.033825576092195,16.02077798925359,0.8429285179780069,0.561837553774111,0.4537289178651108,bizitobs_l2c/5T,medium,480,7,True,1.5846505165100098
25
+ 335.18119047619047,335.18119047619047,12.803082837301588,1.2298319397118342,1.0206430953743773,1.2228686135912699,19.332004219727025,18.307954295228903,1.0279642632362642,0.7188739606712587,0.6055271733915926,bizitobs_l2c/5T,long,720,7,True,1.1263055801391602
26
+ 102.7413349454365,102.7413349454365,5.936383928571429,0.5931343316117645,0.4573945335918765,0.6924020676385789,3.828422933719976,10.136140041723797,0.5463639073522039,0.31998629709199644,0.2510017992336387,bizitobs_l2c/H,short,48,7,True,1.180450201034546
27
+ 113.7685546875,113.7685546875,6.346619233630952,0.6642378329954275,0.6132469616762266,0.9108832949683779,6.018163830574693,10.666234325548075,0.6458566894915232,0.3842974345573916,0.33661172617153023,bizitobs_l2c/H,medium,480,7,True,0.2019040584564209
28
+ 115.57693452380953,115.57693452380953,6.224735708085317,0.6627043145283428,0.5817696526220424,0.8491512238033234,5.742346007748812,10.75067135223701,0.6566820345429194,0.38022482274345215,0.32019756345688516,bizitobs_l2c/H,long,720,7,True,0.21020841598510742
29
+ 13279.384973544973,13279.384973544973,31.662193287037038,1.382890277513564,0.15265958917204034,0.10236649932053984,19.807610298240817,115.23621381121897,0.08537067371024266,0.023456365691486455,0.018380324432227965,bizitobs_service,short,60,2,True,18.210864543914795
30
+ 89739.87555555555,89739.87555555555,76.69974206349207,2.6867176309291136,0.19254324776785714,0.13339267306857638,26.50640126246274,299.56614554310966,0.22546054044483646,0.05772603331482238,0.047665857703698855,bizitobs_service,medium,600,2,True,2.488253593444824
31
+ 136953.66095238095,136953.66095238095,83.38529761904762,1.7049877609759296,0.18859284577546295,0.13429279307208994,30.64569213210288,370.0725076959662,0.27416154462186804,0.061774494237150424,0.05658943754525593,bizitobs_service,long,900,2,True,1.2751893997192383
32
+ 1.4163579230006351,1.4163579230006351,0.45757682924966214,0.8453346591991969,0.8763779375747831,1.9154286593004766,17.328014084452953,1.19010836607455,2.853757780007371,1.0972222981083808,0.9837975250835834,car_parts_with_missing,short,12,1,False,75.18728756904602
33
+ 1057494.5523809523,1057494.5523809523,192.34927944862156,37.573866820620765,0.10869532031757086,0.3841420262080984,611.7419682424237,1028.3455413337251,0.38692001443173757,0.07237235247178701,0.05939904754056629,covid_deaths,short,30,1,False,7.5202484130859375
34
+ 148016.77342905407,148016.77342905407,54.280402502111485,1.0139472643075251,0.17511142855552736,0.17146618576737138,12.09763879064497,384.72948084212896,0.7583776455276223,0.1069973732133482,0.08938512186519933,electricity/15T,short,48,1,False,365.25635266304016
35
+ 287422.029768018,287422.029768018,58.64738464245495,0.8938371010998573,0.1453139280071246,0.14271184532921594,8.026625386849755,536.117552191698,0.9237845473655963,0.10105535148891034,0.08174118221041453,electricity/15T,medium,480,1,False,706.4709887504578
36
+ 351210.20177777775,351210.20177777775,63.88308769707207,0.9371745819613322,0.14581768155793795,0.1435969113644895,8.254685251102579,592.6299028717482,0.9349463493863063,0.1007834051918039,0.08105922200473704,electricity/15T,long,720,1,False,749.2803134918213
37
+ 1725923.3245045044,1725923.3245045044,165.14292880771396,0.9016822956333768,0.1609609527286102,0.1258871367171004,10.75069054709662,1313.7440102639875,0.6201809952852292,0.07795925625701274,0.06459676284382974,electricity/H,short,48,1,False,640.2023661136627
38
+ 6054586.946306306,6054586.946306306,251.7221537162162,1.1057545539086817,0.2517734837768495,0.13481830493823901,9.563510305025218,2460.607028012865,0.9604559683327741,0.09825544759724054,0.07846526844036578,electricity/H,medium,480,1,False,255.18824768066406
39
+ 8637152.752624625,8637152.752624625,285.60565165165167,1.2555251967107843,0.32470391714377184,0.14842345568224474,11.180795808730188,2938.903324817716,1.1591026185315974,0.11264278613771196,0.09049015761971825,electricity/H,long,720,1,False,159.47066926956177
40
+ 1548968681.9886127,1548968681.9886127,4542.82027027027,1.494360784159507,0.44007928330691837,0.10091202139639639,12.029407906479173,39356.93943879037,0.646765250386993,0.07465362732622997,0.059016680936519905,electricity/D,short,30,1,False,151.03166460990906
41
+ 1774530378.2568803,1774530378.2568803,5312.890773130316,2.1334561133486383,0.3386879902837252,0.1664749029753475,15.378822900111368,42125.175112477344,0.7015618128874438,0.08848203651422346,0.07053967031209234,electricity/D,medium,300,1,False,30.344114542007446
42
+ 1292865755.4637973,1292865755.4637973,5514.626805254976,2.6247115017923464,0.5277388769305197,0.23139683413600756,23.724005794873353,35956.44247508084,0.6168828090736254,0.09461109721786384,0.0758018699447012,electricity/D,long,450,1,False,30.247377157211304
43
+ 34454131315.315315,34454131315.315315,26129.511486486488,1.4813702533683801,0.1984563175636002,0.09615060617257883,13.065706263577209,185618.24079361197,0.4235195712708963,0.05961892244512407,0.047706909403911986,electricity/W,short,8,1,False,90.29128050804138
44
+ 811409915106.5411,811409915106.5411,102744.58976582828,3.5866860157438243,0.4148249649763822,0.3184336039137034,52.122595241554954,900782.945612616,2.082364416143529,0.23751746047336453,0.19785313456926257,electricity/W,medium,80,1,False,30.255195379257202
45
+ 5184418954509.522,5184418954509.522,204406.8326822454,5.076474238006369,0.3511060442347048,0.41528060779056275,48.815829478643835,2276931.9169684285,5.400670925091762,0.4848340127916115,0.40889413619371484,electricity/W,long,120,1,False,30.3327693939209
46
+ 5.405309477306548,5.405309477306548,1.146780758812314,0.7185970990647415,0.47754905932428154,0.2499386923653739,5.938019413037647,2.32493214466714,0.43950895100686316,0.21678929834428143,0.16995498946023618,ett1/15T,short,48,7,True,12.85062313079834
47
+ 11.531434771825397,11.531434771825397,1.7776294332837301,1.1211780503748312,0.8266385763136445,0.42036888485863094,7.729673370531223,3.395796632872086,0.6472421957943103,0.3388179276018784,0.2636697775687163,ett1/15T,medium,480,7,True,9.609753370285034
48
+ 10.368508804563492,10.368508804563492,1.76452876984127,1.1437351588238636,0.8652193476758981,0.43640218098958333,9.056620548015934,3.220016895074231,0.613738403969119,0.33632092819656106,0.2662370759132491,ett1/15T,long,720,7,True,6.40865683555603
49
+ 133.76629464285713,133.76629464285713,5.479933965773809,0.8865888053708402,0.5497458321707589,0.2734615507579985,6.154672377580955,11.565737963608598,0.5398203081554408,0.25577093752109437,0.1982066110428337,ett1/H,short,48,7,True,11.738597631454468
50
+ 143.8499255952381,143.8499255952381,6.893265206473214,1.2626025935187979,2090755020691.9539,0.44636789957682294,10.115208547198497,11.993745269732807,0.5744719673473196,0.33017106296252985,0.26058636753690195,ett1/H,medium,480,7,True,2.3371284008026123
51
+ 170.46238425925927,170.46238425925927,7.559931485615079,1.4612800906835135,3073997777005.0444,0.506064117270172,11.019212450061461,13.056124396591022,0.6252295197505249,0.36202874517128036,0.2823464079169384,ett1/H,long,720,7,True,1.7620849609375
52
+ 39198.4,39198.4,133.9813740079365,1.695149507179455,1.044139365544395,0.5045875186011904,12.160674011085163,197.98585808082353,0.5200164235072898,0.3519065230394252,0.26852079921520233,ett1/D,short,30,7,True,1.7355194091796875
53
+ 46154.90285714286,46154.90285714286,150.58403273809523,1.9140969885249557,1.5209092494419643,0.5748674665178571,18.587220853144863,214.8369215408349,0.5925954847917251,0.4153635103422538,0.34095796371114123,ett1/D,medium,300,7,True,0.5741338729858398
54
+ 129935.92888888888,129935.92888888888,245.59297619047618,3.006290432548529,1.578972389209062,0.903278304811508,18.26331683018527,360.46626595132153,0.9156666266788996,0.6238622397878788,0.4569689595998072,ett1/D,long,450,7,True,0.5690524578094482
55
+ 1503368.2857142857,1503368.2857142857,951.2063337053571,1.7681767173278031,0.6777287891932896,0.5998253141130719,10.698745155828362,1226.1191971885464,0.4879020932664876,0.37850770333532147,0.29029673354671726,ett1/W,short,8,7,True,1.1466689109802246
56
+ 9189280.914285714,9189280.914285714,1726.8625,2.5750029120145865,1.1610135759626117,0.7595716748918806,19.89749066349665,3031.3826736797373,1.1253424461160417,0.6410644511262296,0.5479710875422636,ett1/W,medium,80,7,True,0.5707573890686035
57
+ 8.829929896763392,8.829929896763392,1.896984136672247,0.8182875764751691,0.1177015408100639,0.13668005807059153,5.970032842067725,2.971519795788578,0.14106861575667234,0.09005658540521465,0.07042220391245126,ett2/15T,short,48,7,True,12.771749496459961
58
+ 15.402838541666666,15.402838541666666,2.469457000248016,1.0024422342223795,0.15352009657338922,0.18679129464285715,6.6626495447324725,3.9246450211027577,0.20915143729725297,0.13160183358455954,0.10056748745499834,ett2/15T,medium,480,7,True,9.56061339378357
59
+ 16.09539806547619,16.09539806547619,2.475541294642857,1.0235929242212942,0.15819538043957457,0.18951450892857144,7.13210935405745,4.011907035996247,0.21380178802662908,0.13192607664623218,0.10283915532773871,ett2/15T,long,720,7,True,6.359222888946533
60
+ 114.49325706845238,114.49325706845238,6.6335518973214285,0.7471951755559643,0.11812998324894732,0.11005437941778273,5.258354624368996,10.700152198377946,0.13570770201472426,0.08413189527503838,0.06658687992822898,ett2/H,short,48,7,True,11.779388427734375
61
+ 278.96372767857144,278.96372767857144,10.09346168154762,1.07128944816553,0.1763659551519192,0.17162083217075894,7.4912408555170185,16.70220726965665,0.22507298374619406,0.13601588702117098,0.11025456015416854,ett2/H,medium,480,7,True,2.3537282943725586
62
+ 291.0657738095238,291.0657738095238,10.592776537698413,1.1447598244102584,0.18717132468422107,0.1861819797092014,7.803336073539491,17.060649864806553,0.2336324690526358,0.14505992188084638,0.11483269803624034,ett2/H,long,720,7,True,1.7717218399047852
63
+ 129862.89523809524,129862.89523809524,220.7607886904762,1.4475865594770587,0.4539539155505952,0.14806168571351067,13.573623603744224,360.3649472938444,0.20624636724469086,0.12634722394450068,0.10287907444882859,ett2/D,short,30,7,True,1.7076239585876465
64
+ 825940.7238095239,825940.7238095239,628.7584523809523,5.553623835677216,4.478908352189334,0.7176980445498512,36.893187371364434,908.8128101042172,0.5775810250320339,0.3995970868655569,0.2954154611863257,ett2/D,medium,300,7,True,0.5697898864746094
65
+ 1012922.3517460318,1012922.3517460318,742.2027777777778,11.735283867387457,4.422393967762944,0.9151588076636905,278.71978455795727,1006.4404362633845,0.5642906146916674,0.41613795174310836,0.3499947303512256,ett2/D,long,450,7,True,0.5704727172851562
66
+ 3190487.714285714,3190487.714285714,1158.6836635044642,0.7632455427138441,0.12390077114105225,0.13741156033107213,9.706164670150864,1786.1936385189915,0.14983426225427846,0.09719579566481035,0.08823270759057524,ett2/W,short,8,7,True,1.1431095600128174
67
+ 66923856.45714286,66923856.45714286,5731.101785714286,12.771191764120173,8.496065647482014,0.860146495274135,210.58104914010855,8180.700242469642,0.6555249464692103,0.45923699438176724,0.3638859937196616,ett2/W,medium,80,7,True,0.5753922462463379
68
+ 32.985895514675484,32.985895514675484,2.406511923832162,0.7670370742887775,0.6991751826281145,1.0995637159595908,7.286880521252076,5.743334877462352,1.7619915368085108,0.7382912077198189,0.5975865670251478,hierarchical_sales/D,short,30,1,False,67.64127993583679
69
+ 44.78076038208399,44.78076038208399,2.6240507964936803,0.8024654167895361,0.8344209355380715,1.0856185202982118,7.644573980954631,6.691842824072006,2.0372049833589068,0.7988426356898417,0.647389069764157,hierarchical_sales/D,medium,300,1,False,9.586965084075928
70
+ 42.00043917223273,42.00043917223273,2.4955188445909426,0.7779590761931775,0.6643028254267892,1.0653025130545153,7.196180320290748,6.480774581192647,1.8478991873121868,0.7115611239163341,0.5801033820640797,hierarchical_sales/D,long,450,1,False,9.671174049377441
71
+ 477.63072695974574,477.63072695974574,8.983950857388772,0.7231809043374894,0.5046982297049225,0.46497066950393934,6.827842063172093,21.85476439954789,1.0033629235436288,0.4124575782399358,0.34624521921051027,hierarchical_sales/W,short,8,1,False,38.25853991508484
72
+ 1054.4103813559323,1054.4103813559323,10.971092094809322,0.805354901790108,0.5562797858971927,0.4996152198920816,7.702941973855318,32.47168584098972,1.3751843373079007,0.464628602463852,0.3908369300176992,hierarchical_sales/W,medium,80,1,False,9.652891635894775
73
+ 1122.5694209039548,1122.5694209039548,11.531370277189266,0.8658500828961706,0.521488167203006,0.5003378313140007,8.156478694313318,33.504767136990445,1.364477616155884,0.46961366907871466,0.4017301269411832,hierarchical_sales/W,long,120,1,False,9.625505924224854
74
+ 5383.4910908300735,5383.4910908300735,22.27050314401347,0.8291414732985488,0.198047702595339,0.18474553989773468,7.171101734955092,73.37227739977868,0.2663584050436575,0.08084709793916087,0.06515976319497074,hospital,short,12,1,False,62.457231760025024
75
+ 924.0534722222222,924.0534722222222,6.697505115327381,0.31198139285881776,0.3178779952517668,0.5678444514198909,3.803763100365213,30.398247847897785,0.1888112179097359,0.041599900892613485,0.036203411788695565,jena_weather/10T,short,48,21,True,37.49997138977051
76
+ 1948.2226551226552,1948.2226551226552,11.847176001082252,0.6788133852648097,0.9032791104937654,0.6749339094065656,7.707807737023707,44.13867527602811,0.2708782956038766,0.07270591658728845,0.06044998805383046,jena_weather/10T,medium,480,21,True,8.214881181716919
77
+ 1445.1313492063491,1445.1313492063491,10.288113839285714,0.6767911658061178,0.9352624033390122,0.6642689215443122,7.763289294793651,38.01488325914403,0.23261958913052128,0.06295473270056702,0.053626172029671966,jena_weather/10T,long,720,21,True,6.045546054840088
78
+ 1221.9019423558898,1221.9019423558898,9.30197482638889,0.5439800890230383,1.4160001023254705,0.62111751138915,4.893280731198983,34.95571401582136,0.21427627657974127,0.05702050685432873,0.04507907450355751,jena_weather/H,short,48,21,True,11.569712400436401
79
+ 1482.5700396825396,1482.5700396825396,11.442317708333333,0.8597003799167677,2.538502611241925,0.697716316344246,8.389897442995546,38.50415613518285,0.23561376022242916,0.07001757138774656,0.05623708152085824,jena_weather/H,medium,480,21,True,1.2232320308685303
80
+ 1742.2907407407408,1742.2907407407408,13.542113095238095,1.0945889568503193,2.657683445809831,0.72294921875,8.409740944274592,41.7407563508466,0.2513255988876085,0.0815385244880789,0.06517859889908302,jena_weather/H,long,720,21,True,1.226428747177124
81
+ 922.7165674603175,922.7165674603175,14.250430927579366,1.3548597379787206,1.2485769823723032,0.5096462673611111,15.28049178301567,30.37625005592885,0.18291467301532688,0.08581088543340198,0.06871361656872056,jena_weather/D,short,30,21,True,1.1760194301605225
82
+ 68035.16952380953,68035.16952380953,110.4908134920635,12.881621693165242,1.8120606702822242,0.8490513392857143,51.07973379830876,260.835521974691,1.3467595274317665,0.5704919124419006,0.3621173708890082,jena_weather/D,medium,300,21,True,0.5885806083679199
83
+ 4972.138929234334,4972.138929234334,24.717164003501644,1.027355711612558,0.9427041467654329,0.5438298311872238,8.177759884661079,70.51339538863756,1.4759730627197003,0.5173750044927221,0.41071205635535457,kdd_cup_2018_with_missing/H,short,48,1,False,325.6470148563385
84
+ 5536.816023309185,5536.816023309185,27.79790848254444,1.1247019310345203,1.031642792357844,0.6272560657921151,9.401486808211232,74.40978445949958,1.5575315377234378,0.5818605638869769,0.45197816483481973,kdd_cup_2018_with_missing/H,medium,480,1,False,44.973610162734985
85
+ 4586.972606792789,4586.972606792789,26.50284265676906,1.1217651576292638,0.9110561931614243,0.6996594049398073,8.34806597600519,67.72719252111952,1.5891535808424064,0.6218637705582432,0.4864936515193231,kdd_cup_2018_with_missing/H,long,720,1,False,45.26828384399414
86
+ 3002.730062774287,3002.730062774287,21.681172603574456,1.2225478390974243,0.5120332105195112,0.4809837967833113,9.588352156767655,54.797172032635835,1.2275148582551216,0.4856812957323949,0.3869767714624013,kdd_cup_2018_with_missing/D,short,30,1,False,26.054840326309204
87
+ 2230.7669324061876,2230.7669324061876,26.73277559723486,1.486626019235143,0.990515840814331,0.8560662182878136,11.711135009396356,47.230995462791036,1.2893073317485835,0.7297488278149403,0.5688751048668829,kdd_cup_2018_with_missing/D,medium,300,1,False,18.734441995620728
88
+ 4245822.354545718,4245822.354545718,993.1999914758712,3.8753990141898678,0.17769156827628033,0.16839666646914944,43.44116673821744,2060.5393358404294,0.3304170341945164,0.15926422264179976,0.1311673167899092,m4_yearly,short,6,1,False,1840.561499595642
89
+ 1931905.5533333332,1931905.5533333332,634.406640625,1.4811989465441335,0.12511775890986124,0.11678895203272502,16.82187373280713,1389.9300533959733,0.2326498146599437,0.1061884999175537,0.08633779291553248,m4_quarterly,short,8,1,False,1554.9797070026398
90
+ 1884995.0497777779,1884995.0497777779,573.4741903935185,1.0655187568408295,0.15277484323360302,0.13469190680539167,11.99950325952692,1372.95121900881,0.28534639587800037,0.11918762377878382,0.09679527307679432,m4_monthly,short,18,1,False,3075.1347513198853
91
+ 326010.7066638097,326010.7066638097,297.9533961859867,2.7087373096991976,0.06951652544837757,0.06960191189259361,32.284510672093226,570.9734728197184,0.1040225181782278,0.05428249130027035,0.04415020387220745,m4_weekly,short,13,1,False,28.704479932785034
92
+ 398872.97319949983,398872.97319949983,189.3526796275643,3.6374259815347125,0.04191199518651291,0.03454870521617349,37.2427036370086,631.5639106214824,0.09755917012302365,0.02924975600150701,0.02368808711993685,m4_daily,short,14,1,False,335.55169582366943
93
+ 1850091.1819645732,1850091.1819645732,248.82996175523348,0.9845067469726587,0.10789686316645279,0.09254665651183197,13.92936184146352,1360.180569617348,0.18569467063387643,0.03397078213297602,0.025994588075477307,m4_hourly,short,48,1,False,33.71652102470398
94
+ 373296686.33558774,373296686.33558774,2486.7233494363927,3.5073082944475944,0.1760285750679348,0.1917919410791566,34.65964952731477,19320.887307149944,2.7297380606666404,0.35133497056281293,0.26542047722973344,m4_hourly,medium,480,1,False,33.61271548271179
95
+ 1298068646.324423,1298068646.324423,5802.4906065485775,28.945547008949347,0.5418736161433172,0.7356744623926462,260.3501802188198,36028.71974306641,5.247458142087842,0.845112643326196,0.44847745133575817,m4_hourly,long,720,1,False,33.6978964805603
96
+ 150.8202869618007,150.8202869618007,7.370858798566358,0.7122768029802823,0.5779877093767511,0.4318002843496077,5.0439977979873225,12.280891130606145,0.5651950643693476,0.33922400001826797,0.2666446583414159,restaurant,short,30,1,False,65.60675573348999
97
+ 1355.4502083333334,1355.4502083333334,14.022067057291666,3.116038215182963,0.3230690511067708,0.3686583709716797,35.21351841792701,36.816439376090315,1.192493243475897,0.4541780929593512,0.39126100773112416,saugeenday/D,short,30,1,False,1.645031452178955
98
+ 1912.546875,1912.546875,18.211998697916666,4.07841544770529,0.43464090983072917,0.47728012084960936,47.793549861244976,43.73267514113446,1.366603419607207,0.5691071862888396,0.4889146464867031,saugeenday/D,medium,300,1,False,0.6702060699462891
99
+ 1909.532962962963,1909.532962962963,18.469131944444445,4.144406852879702,0.38589070638020834,0.4744608109085648,45.61095396053159,43.69820320062328,1.3436888301625116,0.5679127396293874,0.4776852603181413,saugeenday/D,long,450,1,False,0.5040888786315918
100
+ 1082.4248046875,1082.4248046875,14.940550231933594,1.212155650443092,0.3448917388916016,0.3786292791366577,9.290094303166573,32.90022499448142,0.9931206488287949,0.45099293219684466,0.35947707448819666,saugeenday/W,short,8,1,False,1.619063138961792
101
+ 1146.5315625,1146.5315625,15.149075927734375,1.2424077683494112,0.3605402755737305,0.3903476333618164,9.85283630698498,33.86047197692318,1.0509461658164352,0.4701902345828196,0.3843304768392473,saugeenday/W,medium,80,1,False,0.41498732566833496
102
+ 1181.725,1181.725,15.565291341145834,1.275412649439801,0.37465913560655384,0.39383566114637586,10.229686159322105,34.37622725081972,1.0419043553896836,0.47176627972932833,0.38410550329332227,saugeenday/W,long,120,1,False,0.24547529220581055
103
+ 409.9095517113095,409.9095517113095,12.687213716052828,0.7432988633606497,0.384170168922061,0.37404880069551016,4.579629596904247,20.246223146831845,0.6078523569684602,0.38090821704057254,0.29684510981221435,saugeenday/M,short,12,1,False,0.564763069152832
104
+ 376.51194661458334,376.51194661458334,11.809578450520833,0.6724535425253552,0.3637698491414388,0.3573163350423177,4.5550900351699095,19.40391575467651,0.6131676554741312,0.37318506337559615,0.2928229793952654,saugeenday/M,medium,120,1,False,0.08964729309082031
105
+ 398.51688368055557,398.51688368055557,12.839370388454862,0.739931034237112,0.3482994079589844,0.40056254069010416,4.374339924661372,19.96288765886728,0.6139071716750724,0.3948417531550765,0.3041059876390236,saugeenday/M,long,180,1,False,0.08634829521179199
106
+ 23.645271869297446,23.645271869297446,2.2305537388562575,0.9756290756445912,5.728519834064387,1.5148754259095574,13.250082295341832,4.862640421550564,1.4145415720378067,0.6488678410793178,0.5092712832653998,solar/10T,short,48,1,False,241.66799926757812
107
+ 21.601082448573326,21.601082448573326,2.093918959784893,0.9155093022598021,3.8704121349821214,1.454591550196306,13.908173302420511,4.647696466914909,1.0313423035778126,0.46464893283431064,0.3563150096673689,solar/10T,medium,480,1,False,132.25806999206543
108
+ 20.65682041387875,20.65682041387875,2.0163908055809,0.8805589821008056,3.7119965859906934,1.4479828202618106,14.857540825182147,4.544977493220264,0.9823241756032208,0.4358106148470159,0.3515295586166264,solar/10T,long,720,1,False,96.21536445617676
109
+ 755.1723252016903,755.1723252016903,12.25519362361838,0.9462344099854735,4.46792404834525,1.4221080770747796,7.691202291687676,27.480398927266148,1.0129366441120673,0.4517305128978552,0.33558610220964363,solar/H,short,48,1,False,212.281503200531
110
+ 865.587104622871,865.587104622871,12.974656896289538,0.9932056610787473,4.880253399620857,1.4225046570863746,7.973455168469266,29.420861724682215,1.05980810795038,0.46737742440174873,0.3547623052030909,solar/H,medium,480,1,False,22.628870010375977
111
+ 831.7459042984591,831.7459042984591,13.187892842660178,1.004263690826724,5.5953592897523885,1.4129978647100567,7.7641103164565815,28.84000527563161,0.9999355423222078,0.4572482791067647,0.34499187001184434,solar/H,long,720,1,False,22.63231062889099
112
+ 119351.96496350365,119351.96496350365,243.8404805352798,0.9509108959241367,1.04364462154045,0.4186028028056569,5.358526351413206,345.4735372839773,0.49909159157691396,0.3522664412388745,0.2657677202756935,solar/D,short,30,1,False,22.134860277175903
113
+ 132722.65810218977,132722.65810218977,282.9515085158151,0.8228179453941131,0.4837994221411192,0.3699422616332117,6.981330862513715,364.31121050852903,0.38256728407160007,0.29713054941613815,0.29894627260517553,solar/D,medium,300,1,False,11.019166707992554
114
+ 1738007.00729927,1738007.00729927,1043.1056113138686,1.1385314508341333,0.23559845973105326,0.2034224071641908,5.510428083711228,1318.3349374492318,0.2691051207334863,0.21292393419650646,0.15988271763815104,solar/W,short,8,1,False,11.13416075706482
115
+ 186.19714710565495,186.19714710565495,5.770244135758273,1.3609231849401422,18.733965474162403,1.5328486242425938,20.13936592585768,13.645407546337887,1.6064252461143345,0.6793102972151969,0.5501446684171385,temperature_rain_with_missing,short,30,1,False,7518.162378787994
116
+ 215.23953543995702,215.23953543995702,6.112213588038817,1.5842041249305479,5.308039721928256,1.6522059698999916,28.45313501079961,14.671044115534416,1.863501408383146,0.7763672810163883,0.6150798664937115,temperature_rain_with_missing,medium,300,1,False,2494.2088119983673
117
+ 226.11556007143201,226.11556007143201,6.681300149822201,2.6105646360377386,28.674044446854605,1.5815703054720007,39.730631991632,15.03713935798402,2.0040214296445567,0.8904265870903096,0.7269818169395226,temperature_rain_with_missing,long,450,1,False,2611.191578388214
118
+ 171191.16,171191.16,254.19880208333333,0.3742987360520976,0.024565442403157552,0.024221515655517577,3.5457925596547972,413.7525347354382,0.03878594272328035,0.02382907499100859,0.01951703704777287,us_births/D,short,30,1,False,1.657623052597046
119
+ 181139.5911111111,181139.5911111111,288.79456597222224,0.4312780526790997,0.027821487850613065,0.02758124245537652,4.220746629866103,425.60497073120644,0.040332566435774875,0.027367692624345973,0.022756890230360635,us_births/D,medium,300,1,False,0.2508723735809326
120
+ 211039.73333333334,211039.73333333334,317.47833333333335,0.47596708380428504,0.030499784681532117,0.030239781273735895,5.356735794998887,459.39061084586103,0.04353427146322881,0.03008591734510697,0.02577110811187284,us_births/D,long,450,1,False,0.17190980911254883
121
+ 1980370.142857143,1980370.142857143,1069.1992885044642,0.9725552611597982,0.014447339943477086,0.014489155794892992,6.682018524386679,1407.256246337938,0.019103365556334514,0.014514275501725953,0.01145035567960161,us_births/W,short,8,1,False,1.135817289352417
122
+ 2835149.2,2835149.2,1383.46533203125,1.2660493448384473,0.01877172589302063,0.01872536838054657,7.640556934923029,1683.7901294401272,0.02297924928653608,0.01888061593198509,0.014141611588649397,us_births/W,medium,80,1,False,0.16924309730529785
123
+ 5738573.866666666,5738573.866666666,1821.9532552083333,1.6742322233538478,0.024243237574895223,0.024701813856760662,13.135505607776452,2395.5320633768747,0.03249778988426562,0.024716619314729297,0.02018119189716401,us_births/W,long,120,1,False,0.09089803695678711
124
+ 150705130.66666666,150705130.66666666,10876.7265625,1.2300693786554764,0.03370518982410431,0.03425128757953644,9.19953388808448,12276.201801317322,0.038129799096805105,0.033783038546540134,0.027404011581443316,us_births/M,short,12,1,False,0.1662607192993164
125
+ 1265135342.9333334,1265135342.9333334,31024.70625,2.8422833124976146,0.09896294275919597,0.10578633149464925,45.74794160590908,35568.7410928941,0.11533458836998205,0.1006001791094657,0.12780241552430777,us_births/M,medium,120,1,False,0.08741998672485352
126
+ 36619574021.68889,36619574021.68889,159308.6,10.139941357214335,0.5174495273166233,0.8434236314561632,30.36060212368899,191362.41538423602,0.6477381384556359,0.539239932756796,0.392589010698109,us_births/M,long,180,1,False,0.08823990821838379
embedl_chronos_2_ctx512_int8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ab07da37234417f1449ecee1364863597b57db34e93908ea2f942c6b4d6c427
3
+ size 479671206
infer_trt.py ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Run inference with embedl-deploy's INT8 chronos-2 on TensorRT.
3
+
4
+ Reads a context series, runs the model, prints the median forecast.
5
+ Uses ONNX Runtime's TensorrtExecutionProvider; falls back to CUDA / CPU
6
+ if TRT isn't available.
7
+
8
+ Usage::
9
+
10
+ pip install onnxruntime-gpu numpy
11
+ python infer_trt.py --ctx 512 # or --ctx 2048
12
+
13
+ The script generates a synthetic seasonal context for demonstration;
14
+ swap in your own series of the right length.
15
+ """
16
+ from __future__ import annotations
17
+
18
+ import argparse
19
+ import sys
20
+ from pathlib import Path
21
+
22
+ import numpy as np
23
+ import onnxruntime as ort
24
+
25
+ # Native output grid emitted by the model: 21 quantiles spaced 0.01..0.99
26
+ # step 0.05; the index of the median (q=0.5) is element 10.
27
+ QUANTILE_LEVELS = [round(0.01 + 0.05 * i, 2) for i in range(21)]
28
+ MEDIAN_IDX = 10
29
+ NUM_OUTPUT_PATCHES = 64 # baked into the ONNX
30
+ OUTPUT_PATCH_SIZE = 16 # baked into the ONNX
31
+ MODEL_HORIZON = NUM_OUTPUT_PATCHES * OUTPUT_PATCH_SIZE # 1024 steps
32
+
33
+
34
+ def _make_session(onnx_path: Path) -> ort.InferenceSession:
35
+ providers = [
36
+ ("TensorrtExecutionProvider", {"trt_int8_enable": True}),
37
+ "CUDAExecutionProvider",
38
+ "CPUExecutionProvider",
39
+ ]
40
+ return ort.InferenceSession(str(onnx_path), providers=providers)
41
+
42
+
43
+ def main() -> int:
44
+ parser = argparse.ArgumentParser()
45
+ parser.add_argument(
46
+ "--ctx", type=int, choices=(512, 2048), default=512,
47
+ help="Static context length of the artifact to use.",
48
+ )
49
+ parser.add_argument(
50
+ "--horizon", type=int, default=48,
51
+ help="How many steps of the median forecast to print "
52
+ f"(capped at MODEL_HORIZON={MODEL_HORIZON}).",
53
+ )
54
+ args = parser.parse_args()
55
+ if args.horizon > MODEL_HORIZON:
56
+ sys.exit(f"--horizon must be <= {MODEL_HORIZON}")
57
+
58
+ onnx_path = Path(__file__).with_name(
59
+ f"embedl_chronos_2_ctx{args.ctx}_int8.onnx"
60
+ )
61
+ if not onnx_path.exists():
62
+ sys.exit(f"Missing {onnx_path}; run `huggingface-cli download` first.")
63
+
64
+ # Synthetic seasonal context for demonstration.
65
+ t = np.arange(args.ctx, dtype=np.float32)
66
+ context = (
67
+ 10.0 + 5.0 * np.sin(2 * np.pi * t / 24)
68
+ + 2.0 * np.sin(2 * np.pi * t / 168)
69
+ + 0.3 * np.random.RandomState(0).standard_normal(args.ctx).astype(np.float32)
70
+ ).reshape(1, args.ctx).astype(np.float32)
71
+ group_ids = np.zeros((1,), dtype=np.int64)
72
+
73
+ session = _make_session(onnx_path)
74
+ print(f"Providers in use: {session.get_providers()}")
75
+ preds = session.run(
76
+ None,
77
+ {"context": context, "group_ids": group_ids},
78
+ )[0]
79
+ # preds shape: (1, 21, 1024)
80
+ median = preds[0, MEDIAN_IDX, : args.horizon]
81
+ print(f"Median forecast (first {args.horizon} steps):")
82
+ np.set_printoptions(precision=3, suppress=True, linewidth=120)
83
+ print(median)
84
+ return 0
85
+
86
+
87
+ if __name__ == "__main__":
88
+ sys.exit(main())
snaive_gifteval.csv ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MSE[mean],MSE[0.5],MAE[0.5],MASE[0.5],MAPE[0.5],sMAPE[0.5],MSIS,RMSE[mean],NRMSE[mean],ND[0.5],mean_weighted_sum_quantile_loss,dataset,term,prediction_length,target_dim,to_univariate,elapsed_s
2
+ 125.56935646488512,125.56935646488512,6.351615330169464,1.2928412613913995,0.1710389719335216,0.14238265652237242,51.71365045784323,11.205773354163698,0.1983535851600468,0.11243005123144872,0.11243004880986435,LOOP_SEATTLE/H,short,48,1,False,10.917590141296387
3
+ 153.75436661506708,153.75436661506708,7.21920260497291,1.4805126192799751,0.20086050437084785,0.16072294158463138,59.22050476862574,12.399772845301122,0.21916459102759323,0.1275985944423001,0.12759859625600234,LOOP_SEATTLE/H,medium,480,1,False,1.3358049392700195
4
+ 167.0609584623323,167.0609584623323,7.511452824002408,1.5460268753677606,0.23476947145360338,0.16369716459260514,61.84107501552917,12.925206321847721,0.23099074580000042,0.13423972094936726,0.13423972751252605,LOOP_SEATTLE/H,long,720,1,False,1.3638696670532227
5
+ 145691.3111111111,145691.3111111111,180.18139756944444,1.4875444172240992,0.5399732053067908,0.3908195287297072,59.50177668670795,381.69531187992226,0.6770323708995337,0.31959690096169935,0.31959690269756647,M_DENSE/H,short,48,1,False,1.9075255393981934
6
+ 158402.70222222223,158402.70222222223,189.1006423611111,1.569946511898904,0.5428334697930458,0.397995368109809,62.79786047928581,397.99836962256796,0.6924668813918432,0.32901122738058514,0.3290112253970916,M_DENSE/H,medium,480,1,False,0.41945791244506836
7
+ 137584.05530864198,137584.05530864198,175.8238888888889,1.4779178744488217,0.4978060829089136,0.38833718102796383,59.11671497255889,370.92324719359664,0.6421229733186591,0.3043771431636812,0.3043771400695489,M_DENSE/H,long,720,1,False,0.32475972175598145
8
+ 39929.671111111114,39929.671111111114,118.38299768518519,1.6693368812171987,0.2532523956185716,0.2557375985604745,66.77347533511477,199.82410042612756,0.3459250756939904,0.20493848013227253,0.20493848493959815,M_DENSE/D,short,30,1,False,0.07691335678100586
9
+ 40199.77955555556,40199.77955555556,103.16398611111111,1.3699597130572256,0.2738118923755835,0.20675809733072917,54.798388482214925,200.498826818402,0.36052031534686085,0.18550089990752686,0.18550090832804458,M_DENSE/D,medium,300,1,False,0.03893113136291504
10
+ 34613.632,34613.632,119.09386111111111,1.7106053519618276,0.24086065349591576,0.2593894314236111,68.42421412305445,186.04739181187142,0.3317268893179207,0.21234716433540735,0.2123471617500074,M_DENSE/D,long,450,1,False,0.03941178321838379
11
+ 31.23822759271978,31.23822759271978,3.8183243114578564,0.7644167735543712,1312692316403.7466,0.538321787329966,30.576670933576366,5.58911688844667,0.5226063327326282,0.3570296534180041,0.35702965997134023,SZ_TAXI/15T,short,48,1,False,1.06791090965271
12
+ 28.930445379273504,28.930445379273504,3.6711446647970085,0.7134840540400068,18917890105834.12,0.5172677325387286,28.53936216246171,5.378702945810774,0.5005780877467839,0.34166128798341444,0.3416613121978371,SZ_TAXI/15T,medium,480,1,False,0.20725250244140625
13
+ 28.48211582977208,28.48211582977208,3.6789685719373217,0.6909431344941248,3284113398767.079,0.5217545990251068,27.63772537919771,5.336863857151696,0.4939706119705816,0.3405187776085254,0.34051877936625363,SZ_TAXI/15T,long,720,1,False,0.21029949188232422
14
+ 5404398.959598898,5404398.959598898,346.43736615760264,1.1360241737534567,5.932190463200192,0.4761820977820179,45.440966891178995,2324.736320445589,7.299097101583847,1.087727650212227,1.0877276487238179,bitbrains_fast_storage/5T,short,48,2,True,84.65901184082031
15
+ 5191990.375993042,5191990.375993042,332.75293038959035,1.2202713595882653,5.768419487236171,0.4516151765437165,48.81085432253021,2278.593947150971,6.92299777327362,1.0109953109538277,1.010995340787984,bitbrains_fast_storage/5T,medium,480,2,True,10.675482749938965
16
+ 6473012.871295428,6473012.871295428,404.5292260549034,1.1366422318753115,6.462525817893773,0.5033018991430218,45.4656892083936,2544.2116404291974,6.723591850916995,1.0690499817466734,1.0690499510708638,bitbrains_fast_storage/5T,long,720,2,True,10.805091619491577
17
+ 3407833.9580161185,3407833.9580161185,210.5518366560826,1.9708126376716957,3.046095137251105,0.38408369415249266,78.83250569363364,1846.0319493486884,7.553429809324837,0.8615173317922609,0.8615173308203343,bitbrains_rnd/5T,short,48,2,True,34.18499183654785
18
+ 3267017.897300195,3267017.897300195,204.8128727866788,4.542392314855541,2.750306364851926,0.3918429569214854,181.69569365021314,1807.489390646649,7.605029622998441,0.8617522032352579,0.861752113979323,bitbrains_rnd/5T,medium,480,2,True,4.315740585327148
19
+ 3851065.095876048,3851065.095876048,237.4491928177016,3.501257904408163,3.179405138911208,0.40348581728614835,140.05031689567912,1962.413079826989,7.517562382830161,0.909614361068727,0.9096143200633419,bitbrains_rnd/5T,long,720,2,True,4.283207178115845
20
+ 3938171.448888889,3938171.448888889,1054.6502083333332,2.2423302386755415,0.0340565554300944,0.03481890360514323,89.69320954702165,1984.4826653031992,0.07653356419683467,0.04067364297805646,0.040673643401510015,bizitobs_application,short,60,2,True,0.059565067291259766
21
+ 5143417.173333333,5143417.173333333,1276.9247916666666,2.6914183385868085,0.03906738917032877,0.03992526690165202,107.65673354347234,2267.9103098079813,0.08905416300729038,0.05014107835453231,0.05014107702556578,bizitobs_application,medium,600,2,True,0.01455545425415039
22
+ 5953087.1466666665,5953087.1466666665,1470.5443055555556,3.2063450561622804,0.04643516540527344,0.04741138034396701,128.2538022464912,2439.894904840507,0.09409699394104339,0.05671301593170149,0.05671301612556983,bizitobs_application,long,900,2,True,0.010915040969848633
23
+ 174.3096912202381,174.3096912202381,9.685235305059523,0.9860210805885202,0.42617953698061745,0.5068802606491816,39.44084322189937,13.202639555037399,0.45343208257188783,0.3326301832497065,0.33263017680145246,bizitobs_l2c/5T,short,48,7,True,0.7398536205291748
24
+ 294.66615646258504,294.66615646258504,12.864580676020408,1.2435997989335994,0.9360730119589105,1.1668089007914848,49.743991963161825,17.16584272509174,0.9031757619892758,0.6768661254104057,0.6768660866542067,bizitobs_l2c/5T,medium,480,7,True,0.2578885555267334
25
+ 416.33936507936505,416.33936507936505,15.353609871031747,1.4542830442631411,1.0210265852224123,1.298652753589897,58.17132176854879,20.404395729336485,1.1456763155758307,0.862082240570442,0.8620822217519287,bizitobs_l2c/5T,long,720,7,True,0.1864151954650879
26
+ 281.8430679563492,281.8430679563492,12.53165302579365,1.2140641267600039,1.3605904339028776,1.138373051002047,48.562565014602534,16.788182389894065,0.9049260260934667,0.675488192208351,0.6754881946074254,bizitobs_l2c/H,short,48,7,True,0.04691791534423828
27
+ 456.3732886904762,456.3732886904762,15.667392113095238,1.5102861226255864,1.6912910179529201,1.4024095456148358,60.41144507954138,21.362895138311103,1.293555748999092,0.9486843898499615,0.9486843764410496,bizitobs_l2c/H,medium,480,7,True,0.0128173828125
28
+ 309.27222222222224,309.27222222222224,13.635487971230159,1.4260541525613812,2.4383105011700468,0.9168538411458333,57.04216609148806,17.586137217201003,1.0742120179443015,0.8328949597245134,0.8328950165964918,bizitobs_l2c/H,long,720,7,True,0.012805938720703125
29
+ 73535.24306878306,73535.24306878306,55.138688409391534,1.225305042620374,0.08240041742879878,0.07553190362516535,49.01220170773149,271.1738244535838,0.2008942442703866,0.04084850431410673,0.040848506592179465,bizitobs_service,short,60,2,True,1.1290419101715088
30
+ 96480.73142857142,96480.73142857142,63.760550595238094,1.3205790727650968,0.0796314687577505,0.07705034528459821,52.823162909021214,310.6134759288003,0.23377502162466005,0.04798769290234763,0.04798769137188229,bizitobs_service,medium,600,2,True,0.18498921394348145
31
+ 130947.25079365079,130947.25079365079,75.32497354497355,1.367193469742303,0.08491984049479166,0.08144445348668981,54.687738783087575,361.8663438255218,0.26808215608217806,0.055803148480992645,0.055803150968174536,bizitobs_service,long,900,2,True,0.11442089080810547
32
+ 2.5046831406935035,2.5046831406935035,0.6672313006509898,1.2014638390969912,0.8541762945076465,1.6763314144736843,48.058553563879656,1.5826190763078472,3.7949581992256025,1.5999522140809175,1.5999522140809175,car_parts_with_missing,short,12,1,False,2.3009579181671143
33
+ 4435194.482205514,4435194.482205514,353.7093984962406,46.91239825526407,0.132724402667158,0.17781104711702989,1876.495930210563,2105.990142950701,0.792389040211866,0.13308488253209907,0.13308488253209905,covid_deaths,short,30,1,False,0.23350000381469727
34
+ 366722.87168918917,366722.87168918917,94.21436127533784,1.7170601412372184,0.30235384997180187,0.23004003312303262,68.6824056654982,605.5764788110492,1.193710612408421,0.18571507783204827,0.18571507571877952,electricity/15T,short,48,1,False,206.92405223846436
35
+ 373592.9609594595,373592.9609594595,70.78214646677928,1.1507882041044137,0.21527551573127818,0.162019429539667,46.03152816212443,611.2225134592635,1.0531979612070823,0.12196476848793535,0.12196476617346527,electricity/15T,medium,480,1,False,200.85252356529236
36
+ 432425.0750750751,432425.0750750751,73.83208042417418,1.1635317075319347,0.19999027586553747,0.1567721679648986,46.54126829400366,657.5903550654275,1.0374294291948993,0.11647916132088339,0.11647915862076275,electricity/15T,long,720,1,False,196.47730493545532
37
+ 2887718.36009009,2887718.36009009,247.69792300112613,1.3577726051465433,0.3631860614314555,0.16452154722835458,54.31090419905317,1699.3287969342748,0.8022045515456071,0.11693110926995137,0.1169311135909889,electricity/H,short,48,1,False,45.17688870429993
38
+ 8353587.978378379,8353587.978378379,308.2015061936937,1.3924537851702354,0.3866618745283321,0.15667597765115268,55.69815140445702,2890.2574242406813,1.128162669425473,0.1203011991361897,0.12030120590279074,electricity/H,medium,480,1,False,17.89459800720215
39
+ 13526606.943327328,13526606.943327328,357.2064234234234,1.5240786163496851,0.36051114996741657,0.16771684918985819,60.96314464915199,3677.8535782882013,1.4505443840804357,0.14088210974822626,0.1408821150634113,electricity/H,long,720,1,False,11.365173816680908
40
+ 4108036968.189694,4108036968.189694,6964.321117117117,1.987041399842847,0.6052061423957089,0.13582226488305205,79.4816559605436,64093.9698270414,1.0532768308357283,0.11444692995228782,0.11444693495894932,electricity/D,short,30,1,False,1.5443813800811768
41
+ 16553690896.78556,16553690896.78556,11647.30377680158,3.0681333562731403,0.8102130230447496,0.19638003144191893,122.72533413239843,128661.14758071124,2.1427506877749902,0.19397672605717842,0.19397673869338228,electricity/D,medium,300,1,False,0.4208834171295166
42
+ 7951723915.523005,7951723915.523005,10689.539964032067,3.377389574206925,0.9333598505493025,0.2665012064491933,135.09558294974732,89172.43921483254,1.52987729063898,0.18339393407139498,0.18339395129027264,electricity/D,long,450,1,False,0.42363667488098145
43
+ 317380739662.4144,317380739662.4144,56604.72342342342,2.0896995064573947,0.285636731125347,0.1196364761812733,83.58798028759841,563365.5471027798,1.2854142672489681,0.12915329923232946,0.12915330581176118,electricity/W,short,8,1,False,0.7867403030395508
44
+ 474026712122.58026,474026712122.58026,81887.81460537728,3.295154129261805,0.427165207167695,0.2715622591002927,131.80616513274387,688495.9782907815,1.5916148644173123,0.1893022865059089,0.18930228352013168,electricity/W,medium,80,1,False,0.335834264755249
45
+ 2461647637172.1704,2461647637172.1704,172595.19151454885,4.739523732417323,0.44133746326416484,0.32868859753203605,189.5809492730577,1568963.8737626085,3.721436513934445,0.409379756011472,0.40937974526930576,electricity/W,long,120,1,False,0.3406796455383301
46
+ 8.776201520647321,8.776201520647321,1.4945350283668155,0.9341549587802876,0.6328330752819759,0.30603092738560267,37.36619833642183,2.962465446321243,0.5600292824430536,0.2825293306160358,0.28252931910242346,ett1/15T,short,48,7,True,1.5849542617797852
47
+ 12.883658234126985,12.883658234126985,1.8389095052083333,1.188305978388322,0.9080556087099148,0.42800251405065676,47.53223913502888,3.5893813163450585,0.6841396278696877,0.3504979699009272,0.3504979281819248,ett1/15T,medium,480,7,True,1.1151096820831299
48
+ 13.023148561507936,13.023148561507936,1.8557530381944445,1.190885705867336,0.9840622608053838,0.4204419926758006,47.63542822866356,3.608759975602137,0.6878332194845934,0.35370836394199906,0.35370835564468395,ett1/15T,long,720,7,True,0.7488775253295898
49
+ 141.21642485119048,141.21642485119048,5.822230747767857,0.9773176243434534,0.5700293404715402,0.28737351553780693,39.09270495932209,11.883451722929264,0.5546493091237623,0.271747328730894,0.27174733285420455,ett1/H,short,48,7,True,0.4384500980377197
50
+ 204.51871279761906,204.51871279761906,8.163152785528274,1.5678007461285395,2345799664153.64,0.45697086879185267,62.71202982467704,14.301003908733787,0.6849841868181539,0.3909956677413786,0.3909956544526658,ett1/H,medium,480,7,True,0.09129166603088379
51
+ 199.49484126984126,199.49484126984126,7.749353091931217,1.4787012870437326,2646635889605.55,0.47721551158440806,59.14805147724964,14.124264273576916,0.6763804250290198,0.37109973563904386,0.3710997408525986,ett1/H,long,720,7,True,0.0739750862121582
52
+ 57976.62857142857,57976.62857142857,154.97894345238095,1.7783697877928102,1.1623038155691965,0.5164825923859127,71.13479171047753,240.7833643992636,0.6324254934604606,0.4070573356817528,0.40705734200353527,ett1/D,short,30,7,True,0.019209623336791992
53
+ 131011.70285714285,131011.70285714285,261.95113095238094,3.457342747193022,3.076456008184524,0.8584345935639881,138.29370998203282,361.9553879377165,0.9983997492123741,0.7225529779757223,0.7225529868194407,ett1/D,medium,300,7,True,0.01039576530456543
54
+ 95056.83301587301,95056.83301587301,206.77896825396826,2.50137048284932,1.2237065592706677,0.7845179191468254,100.05481930877284,308.3128816898071,0.7831851216187886,0.5252657965914168,0.5252657863713298,ett1/D,long,450,7,True,0.010498762130737305
55
+ 1571455.142857143,1571455.142857143,970.0256696428571,1.7689207877683926,0.6150428227015904,0.6251754760742188,70.75683148680487,1253.5769393448265,0.4988281842249676,0.38599636628003803,0.38599640000041496,ett1/W,short,8,7,True,0.013276338577270508
56
+ 3013838.1714285715,3013838.1714285715,1167.4299107142858,2.047899578205983,0.9973240443638393,0.5954194205147879,81.91598321614292,1736.04094750918,0.6444717730263018,0.43338587463703493,0.4333858789056641,ett1/W,medium,80,7,True,0.009632110595703125
57
+ 14.617721121651785,14.617721121651785,2.534710984002976,1.067314800011479,0.15340707960692476,0.17031889997991706,42.692592005961664,3.8233128464267456,0.181506262086668,0.12033174753313121,0.12033175256754042,ett2/15T,short,48,7,True,1.5395138263702393
58
+ 14.948670634920635,14.948670634920635,2.4787872023809525,1.0512391501712754,0.1650384327009311,0.1899925877490716,42.04956602771662,3.8663510749698657,0.20604484738813625,0.1320990569451144,0.13209906465844204,ett2/15T,medium,480,7,True,1.1119554042816162
59
+ 13.674988839285714,13.674988839285714,2.362206101190476,1.0126577751121104,0.1609817984920091,0.1894470412273871,40.5063110169369,3.697970908388236,0.19707156352079597,0.12588623903557683,0.125886242249831,ett2/15T,long,720,7,True,0.7440629005432129
60
+ 151.78024553571427,151.78024553571427,7.9655081612723215,0.9231678277377344,0.1445715792364967,0.13716111864362443,36.92671311358891,12.319912562015782,0.1562507702523094,0.10102480674150278,0.10102480375818929,ett2/H,short,48,7,True,0.43411803245544434
61
+ 338.06856398809526,338.06856398809526,11.509515671502976,1.2384249730532626,0.20117125149055434,0.19754707699730284,49.536998911678424,18.3866409109466,0.24777181028131637,0.15509812516606425,0.1550981243210194,ett2/H,medium,480,7,True,0.09164547920227051
62
+ 258.848330026455,258.848330026455,10.011796254960318,1.1284016697207502,0.19021284402568,0.18827246610449735,45.13606680241083,16.08876409257265,0.2203232414204263,0.1371038440641976,0.1371038387294879,ett2/H,long,720,7,True,0.07025790214538574
63
+ 122878.94603174603,122878.94603174603,211.56051587301587,1.3901143157307532,0.4713712661985367,0.14168287004743305,55.60457252152048,350.5409334610525,0.20062382493032205,0.12108166507005774,0.12108167243073556,ett2/D,short,30,7,True,0.018878698348999023
64
+ 851208.0457142857,851208.0457142857,698.1015476190477,5.907177440756812,4.795057561766145,0.7820408993675595,236.28709774843423,922.6093678877783,0.5863492002799479,0.443666949857387,0.4436669176710148,ett2/D,medium,300,7,True,0.010422945022583008
65
+ 1057443.1898412697,1057443.1898412697,741.7170634920635,10.520136852497242,3.807141149055682,0.9203823793044903,420.8054744497092,1028.3205676447737,0.576558357860432,0.41586562165483426,0.41586563813798705,ett2/D,long,450,7,True,0.010573148727416992
66
+ 4688738.857142857,4688738.857142857,1323.111607142857,0.7785209533197451,0.12217171703066144,0.1269862311226981,31.140838207700465,2165.3495923621335,0.1816396339666693,0.11098877930205708,0.11098878195344107,ett2/W,short,8,7,True,0.013280391693115234
67
+ 49258174.17142857,49258174.17142857,4932.047767857143,10.654122578191789,8.015604801315197,0.8018862043108259,426.1649028261938,7018.416785246412,0.5623904007095556,0.39520826496291706,0.3952082607882805,ett2/W,medium,80,7,True,0.009781122207641602
68
+ 58.96940884663084,58.96940884663084,3.4495245969408845,1.1348033996861053,1.219942090035255,1.1912773542022284,45.392135987444206,7.679154175209066,2.3558794594517027,1.058275945161004,1.058275945161004,hierarchical_sales/D,short,30,1,False,0.7518742084503174
69
+ 36.436921195177355,36.436921195177355,2.883248878793174,0.932734099100484,0.8947294865280908,1.2190845782998316,37.309363964019354,6.03630029034154,1.8376374573979803,0.8777505895703672,0.8777505895703672,hierarchical_sales/D,medium,300,1,False,0.147902250289917
70
+ 51.65906721748195,51.65906721748195,3.604243079417783,1.1948529565850856,1.3046758043335522,1.0680371393003065,47.79411826340342,7.187424240816869,2.04939012259692,1.0276978120269713,1.027697812026971,hierarchical_sales/D,long,450,1,False,0.14982199668884277
71
+ 1045.4721927966102,1045.4721927966102,13.569120762711865,1.0250133777288337,0.9503837463030324,0.5798107884238987,41.00053510915335,32.33376242871544,1.4844588487218926,0.6229649713667368,0.6229649713667368,hierarchical_sales/W,short,8,1,False,0.29749011993408203
72
+ 3908.0491525423727,3908.0491525423727,24.204343220338984,1.4603668162207726,2.453558769035877,0.6849931072310464,58.4146726488309,62.51439156340221,2.6475007351113122,1.025060227991548,1.025060227991548,hierarchical_sales/W,medium,80,1,False,0.1088707447052002
73
+ 3733.2389830508473,3733.2389830508473,24.83156779661017,1.3955720720423892,2.2999629768625054,0.6361229845854004,55.82288288169558,61.100237176715176,2.48829981801008,1.0112626150779842,1.0112626150779842,hierarchical_sales/W,long,120,1,False,0.11163020133972168
74
+ 3464.0771403737504,3464.0771403737504,20.005975662755322,0.9205278266364826,0.23307140471364352,0.21025354682958836,36.82111306545931,58.85641120875236,0.21366243998041978,0.07262633732682543,0.07262633732682543,hospital,short,12,1,False,0.6488187313079834
75
+ 1986.203373015873,1986.203373015873,10.556470114087302,0.7428874675800381,0.8774809708937492,0.39362146904346257,29.715498695167074,44.566841631597285,0.2768159431081858,0.06556891005829443,0.06556890763666191,jena_weather/10T,short,48,21,True,3.889085292816162
76
+ 2572.8219336219336,2572.8219336219336,12.447531114718615,0.7160100391723763,0.8990536291309329,0.4023956803535614,28.640401558430753,50.72299215959104,0.311286135757249,0.07639028565640756,0.07639028684026478,jena_weather/10T,medium,480,21,True,2.0681679248809814
77
+ 2044.5376984126983,2044.5376984126983,11.441627397486773,0.7614923703210493,0.7718160693153647,0.4043349656668781,30.459694804800936,45.21656442513847,0.2766879110680792,0.0700132799578619,0.07001328212948918,jena_weather/10T,long,720,21,True,1.490952968597412
78
+ 1941.9557226399331,1941.9557226399331,11.035693889672096,0.7229102185557323,1.1349936220434893,0.40077710759656054,28.9164087302882,44.06762669624872,0.2701317147149199,0.06764809310095782,0.06764809627660708,jena_weather/H,short,48,21,True,0.7686893939971924
79
+ 1951.8111111111111,1951.8111111111111,12.670400080605159,0.8886133410507664,1.7017065286708326,0.45474790719102887,35.54453364594125,44.1793063674738,0.27034101099927343,0.077532425227887,0.07753242590326397,jena_weather/H,medium,480,21,True,0.0887608528137207
80
+ 2714.1007936507935,2714.1007936507935,15.67983630952381,1.2677178473920059,1.8661278391921836,0.5020780815368567,50.708713894069284,52.097032484113655,0.31368185519406616,0.09440998667650671,0.09440998845777937,jena_weather/H,long,720,21,True,0.08818411827087402
81
+ 633.5864087301587,633.5864087301587,13.136656746031745,1.5734140297468562,1.7707135350571066,0.4854136849221913,62.93656112538948,25.17114238031637,0.15157141745411598,0.07910414448099358,0.07910414598861794,jena_weather/D,short,30,21,True,0.03004622459411621
82
+ 8889.228571428572,8889.228571428572,37.11004216269841,3.157431911090926,1.027283198188711,0.5887046983506945,126.2972762728247,94.28270557970095,0.48680536703826316,0.19160849897913082,0.191608489697027,jena_weather/D,medium,300,21,True,0.01830768585205078
83
+ 5615.976023835748,5615.976023835748,32.23957254610716,1.340425278558367,1.4218929148819215,0.6653979848821596,53.61701111955137,74.9398160114885,1.5686260624453057,0.6748326381021144,0.6748326374849605,kdd_cup_2018_with_missing/H,short,48,1,False,12.596320629119873
84
+ 5785.5976861948375,5785.5976861948375,31.3213270934715,1.4289997072062277,1.6378374272295781,0.6550327560864638,57.159988278385114,76.06311646386071,1.592138770600474,0.6556120959870002,0.6556120963715351,kdd_cup_2018_with_missing/H,medium,480,1,False,1.412031650543213
85
+ 4863.8870949314805,4863.8870949314805,29.603438898808303,1.3355336658089667,1.3504101339311876,0.8098963463700346,53.42134660620365,69.74157364822995,1.6364191009705393,0.694616286015704,0.6946162991560859,kdd_cup_2018_with_missing/H,long,720,1,False,1.4083824157714844
86
+ 3183.23772462431,3183.23772462431,23.884613481510574,1.4970343738270926,0.5893064466306873,0.5721879846611051,59.88137493881037,56.42018898075679,1.263872161836989,0.5350407118596068,0.5350407225518309,kdd_cup_2018_with_missing/D,short,30,1,False,0.4270029067993164
87
+ 2363.0785946136816,2363.0785946136816,27.75560905053578,1.5132590804250887,1.3375974878108405,0.6321052677370944,60.530363240303586,48.6115068128286,1.3269924024892117,0.7576700405181008,0.7576700951914865,kdd_cup_2018_with_missing/D,medium,300,1,False,0.26598596572875977
88
+ 4070174.893125562,4070174.893125562,1007.6444123429384,3.965954931783283,0.17520083696448324,0.16353434447586868,158.6381972628743,2017.4674453694568,0.323510256896443,0.1615804524853844,0.1615804529679796,m4_yearly,short,6,1,False,19.45150661468506
89
+ 2487884.428,2487884.428,708.8467662760416,1.602247174616002,0.14192582162221273,0.12521366802851358,64.08988698671281,1577.302896719587,0.26401272904907985,0.11864846608179633,0.11864846597986037,m4_quarterly,short,8,1,False,20.563713788986206
90
+ 2652970.8577407408,2652970.8577407408,700.2370131655092,1.259717038974429,0.19222692431343927,0.15988281532570167,50.3886815584105,1628.794295711015,0.33851937015163663,0.14553329004027185,0.14553329040983615,m4_monthly,short,18,1,False,42.18107485771179
91
+ 453525.1459181487,453525.1459181487,347.99148275123207,2.777295047362158,0.08937289522218837,0.09161286714732429,111.09180188455862,673.442756229621,0.1226908336142798,0.06339865521526268,0.0633986508178507,m4_weekly,short,13,1,False,0.3600475788116455
92
+ 497624.29605596676,497624.29605596676,180.83018393659805,3.278424296610481,0.04217648847004251,0.03045251709590828,131.13697189602377,705.4249046184624,0.10896865245350737,0.02793326594720746,0.027933266205863647,m4_daily,short,14,1,False,5.107635974884033
93
+ 3614355.993558776,3614355.993558776,353.8562298711755,1.1932101877276544,0.1561203125786282,0.1391227341312525,47.728407509221775,1901.1459685039379,0.25954838815818215,0.04830918594592099,0.048309188694169974,m4_hourly,short,48,1,False,0.4071536064147949
94
+ 18686089.192914654,18686089.192914654,718.5466183574879,4.515941322114338,0.22444297802813004,0.18710218051781402,180.63765287833718,4322.740935207042,0.6107354320559412,0.1015193568137983,0.1015193560309833,m4_hourly,medium,480,1,False,0.41850876808166504
95
+ 13034453.45700483,13034453.45700483,692.3892646269458,8.828472024915083,0.2509329762563741,0.19812174217072598,353.13888096645167,3610.3259488590265,0.5258314597641848,0.10084409632290894,0.10084409666514713,m4_hourly,long,720,1,False,0.42863893508911133
96
+ 269.8283833006444,269.8283833006444,10.66129634818343,1.0060757450046092,0.9434227416570351,0.5561225187815214,40.243029800184374,16.426453765211907,0.7559834619860213,0.49065755991884735,0.49065755991884735,restaurant,short,30,1,False,0.769150972366333
97
+ 994.7777083333333,994.7777083333333,15.3725,3.413049305768806,0.47135218302408854,0.4242374928792318,136.52197211095506,31.540096834558597,1.0215912513857213,0.49791893773514423,0.4979189420597076,saugeenday/D,short,30,1,False,0.09297490119934082
98
+ 2355.8577083333334,2355.8577083333334,27.58091796875,6.1713144255464565,1.219112040201823,0.7451884969075521,246.8525770763247,48.53717861941847,1.5167394646067018,0.86187677040929,0.8618767285693779,saugeenday/D,medium,300,1,False,0.04301047325134277
99
+ 2015.7035185185184,2015.7035185185184,23.283074363425925,5.219717548585296,0.8030437102141204,0.662445656105324,208.7887023011067,44.896586936186125,1.3805382821258192,0.7159380629529482,0.7159380472641745,saugeenday/D,long,450,1,False,0.0292971134185791
100
+ 1800.4892578125,1800.4892578125,24.552409362792968,1.990658004828632,0.824161148071289,0.557866096496582,79.62632026712338,42.43217243805106,1.2808504084686672,0.7411348925661494,0.7411349296299942,saugeenday/W,short,8,1,False,0.025656700134277344
101
+ 4327.198125,4327.198125,43.775107421875,3.612161579325768,2.4635687255859375,0.8023342895507812,144.48646321281828,65.78144210185727,2.041694941698939,1.3586721807828297,1.3586722069045793,saugeenday/W,medium,80,1,False,0.010456323623657227
102
+ 1556.4131944444443,1556.4131944444443,24.036745876736113,1.9722020518916452,1.1188551161024305,0.6690291086832683,78.88808223422032,39.45140294646623,1.1957271592442247,0.7285264329804891,0.7285264256740019,saugeenday/W,long,120,1,False,0.00841975212097168
103
+ 713.7325613839286,713.7325613839286,16.662892659505207,0.9763741730697157,0.4971456073579334,0.4422340847197033,39.05496702137206,26.71577364374703,0.8020876713555654,0.500270025848136,0.500270043913668,saugeenday/M,short,12,1,False,0.009783267974853516
104
+ 519.60400390625,519.60400390625,15.039961751302084,0.8563959916124527,0.5394182205200195,0.44228534698486327,34.25583970794092,22.794824059559005,0.7203210425285692,0.47526582789063704,0.47526582261678435,saugeenday/M,medium,120,1,False,0.005833625793457031
105
+ 640.51640625,640.51640625,16.488650173611113,0.9502384480493147,0.4431572808159722,0.5804578993055556,38.0095378951032,25.308425598009848,0.7782954171723679,0.5070659498664759,0.5070659602126706,saugeenday/M,long,180,1,False,0.005832195281982422
106
+ 37.917036857512166,37.917036857512166,2.5271684706936206,1.1057028063509833,4.40491207343912,0.925039670208932,44.228112249261166,6.157681126650857,1.7912687729072838,0.7351530344494263,0.7351530399357953,solar/10T,short,48,1,False,26.2529718875885
107
+ 29.228987641008626,29.228987641008626,2.118083017100752,0.9270005404761702,3.219568147534267,0.6587355148950821,37.08002161649974,5.406383970918883,1.1996980737201242,0.4700110331163171,0.4700110383906899,solar/10T,medium,480,1,False,12.446884155273438
108
+ 26.90307906275345,26.90307906275345,1.995840144718167,0.8709317964102903,2.310040346896705,0.6597688060895561,34.83727185719509,5.18681781661487,1.1210476934837867,0.4313689182665159,0.4313689386113222,solar/10T,long,720,1,False,9.13440203666687
109
+ 1009.7531694199001,1009.7531694199001,12.29965959124688,0.9519362458316395,3.8670855712527974,0.6200499536903793,38.07744982709496,31.77661356123242,1.171296544389828,0.4533695432534923,0.45336955257324035,solar/H,short,48,1,False,4.640784978866577
110
+ 993.4109489051095,993.4109489051095,12.224457306873479,0.9349685908749716,5.243116882202785,0.568037363492515,37.39874362043983,31.518422373353484,1.1353671382460326,0.4403534842165714,0.4403535179356639,solar/H,medium,480,1,False,0.5498418807983398
111
+ 1160.9764801297647,1160.9764801297647,13.995331508515815,1.0711966477927781,5.3301362264546865,0.7115105305381197,42.847865905366156,34.073104938202576,1.1813766446766685,0.48524364916713286,0.48524367547346525,solar/H,long,720,1,False,0.5592122077941895
112
+ 181869.82773722627,181869.82773722627,295.1889902676399,1.155861190610263,1.1535581565541362,0.49778203291324513,46.23444761517926,426.46198861941525,0.6160923187357285,0.4264475482750424,0.4264475398101876,solar/D,short,30,1,False,0.20866990089416504
113
+ 187233.9900729927,187233.9900729927,298.48034063260343,0.860861979213694,0.7361867016423358,0.3309720004562044,34.43447916380042,432.70543106482114,0.45438882139923636,0.31343755001442053,0.31343752807363384,solar/D,medium,300,1,False,0.12772727012634277
114
+ 2813150.8321167883,2813150.8321167883,1341.8134124087592,1.4703506784640206,0.3086572076282362,0.2534797557079009,58.81402720654204,1677.245012547895,0.3423676402558515,0.2738976644635694,0.273897654016819,solar/W,short,8,1,False,0.11992120742797852
115
+ 310.64911445557556,310.64911445557556,7.890313322375261,2.0115357653222166,97.02872693676676,1.3339967533230714,80.4614306209535,17.625240833973745,2.0749568489172328,0.9288984940737532,0.9288984951061345,temperature_rain_with_missing,short,30,1,False,75.85379672050476
116
+ 311.24139441769313,311.24139441769313,8.407676337098422,2.156671129811727,35.01702209174938,1.540674461176926,86.26684521195895,17.642034871796767,2.240873694567327,1.0679346726810548,1.0679346651834685,temperature_rain_with_missing,medium,300,1,False,33.445677757263184
117
+ 367.55800151908664,367.55800151908664,9.671201093391577,3.2847683855488436,103.52729287330608,1.4733509125513213,131.39073541955918,19.171802250156,2.5550539660205223,1.288895033832883,1.288895042045347,temperature_rain_with_missing,long,450,1,False,34.054985761642456
118
+ 2855120.2133333334,2855120.2133333334,1266.88,1.8648391912491094,0.12472813924153646,0.1233361307779948,74.59356764996437,1689.7100974230264,0.15839661042681866,0.11875971986174946,0.11875971986174948,us_births/D,short,30,1,False,0.03697824478149414
119
+ 4080957.7244444443,4080957.7244444443,1584.621111111111,2.36198879935133,0.15415520562065974,0.1564234076605903,94.47955197405324,2020.1380458880637,0.19143891060584983,0.15016703430323472,0.15016703430323475,us_births/D,medium,300,1,False,0.01041555404663086
120
+ 2409594.88,2409594.88,1140.63,1.7149368262230194,0.12172743055555556,0.1089990488688151,68.59747304892078,1552.2869837758738,0.1471028822641955,0.10809210046254925,0.10809210046254925,us_births/D,long,450,1,False,0.010072946548461914
121
+ 5288246.857142857,5288246.857142857,1720.3214285714287,1.5634204337929731,0.023174324205943515,0.023229679891041348,62.53681735171892,2299.6188504060533,0.031217100406456557,0.023353194707727513,0.023353194707727516,us_births/W,short,8,1,False,0.014847517013549805
122
+ 16434320.0,16434320.0,3326.1875,3.0472781516026286,0.04503523707389832,0.045985454320907594,121.89112606410515,4053.926491686794,0.05532529607638133,0.045393597693600254,0.045393597693600254,us_births/W,medium,80,1,False,0.006728649139404297
123
+ 24335040.0,24335040.0,4343.425,3.9912671051975885,0.06024245421091715,0.05812195142110189,159.6506842079035,4933.055848051997,0.06692183957302365,0.05892290701761308,0.058922907017613074,us_births/W,long,120,1,False,0.005875825881958008
124
+ 74172117.33333333,74172117.33333333,6704.75,0.7605310792868888,0.020606640726327896,0.020953829089800518,30.421243171475552,8612.323573422756,0.02674981830097076,0.020824907787592,0.020824907787591995,us_births/M,short,12,1,False,0.006451845169067383
125
+ 1035223790.9333333,1035223790.9333333,30213.033333333333,2.76792304462343,0.09724164009094238,0.10286006927490235,110.71692178493721,32174.893798322526,0.1043297574796307,0.09796826246416405,0.09796826246416405,us_births/M,medium,120,1,False,0.006281137466430664
126
+ 1568352574.5777779,1568352574.5777779,34102.90555555555,2.170638759821498,0.11103803846571181,0.1197201410929362,86.82555039285991,39602.43142255003,0.13404933856239717,0.11543412281941556,0.11543412281941559,us_births/M,long,180,1,False,0.005889892578125