EvalData commited on
Commit
79e67e6
·
verified ·
1 Parent(s): 1b62a93

Initial dataset release: TSFMI-Synthetic (11 configs, 60/20/20 splits, Croissant 1.0 + RAI metadata)

Browse files
CROISSANT.json ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "@language": "en",
4
+ "@vocab": "https://schema.org/",
5
+ "citeAs": "cr:citeAs",
6
+ "column": "cr:column",
7
+ "conformsTo": "dct:conformsTo",
8
+ "cr": "http://mlcommons.org/croissant/",
9
+ "rai": "http://mlcommons.org/croissant/RAI/",
10
+ "data": {"@id": "cr:data", "@type": "@json"},
11
+ "dataType": {"@id": "cr:dataType", "@type": "@vocab"},
12
+ "dct": "http://purl.org/dc/terms/",
13
+ "examples": {"@id": "cr:examples", "@type": "@json"},
14
+ "extract": "cr:extract",
15
+ "field": "cr:field",
16
+ "fileProperty": "cr:fileProperty",
17
+ "fileObject": "cr:fileObject",
18
+ "fileSet": "cr:fileSet",
19
+ "format": "cr:format",
20
+ "includes": "cr:includes",
21
+ "isLiveDataset": "cr:isLiveDataset",
22
+ "jsonPath": "cr:jsonPath",
23
+ "key": "cr:key",
24
+ "md5": "cr:md5",
25
+ "parentField": "cr:parentField",
26
+ "path": "cr:path",
27
+ "recordSet": "cr:recordSet",
28
+ "references": "cr:references",
29
+ "regex": "cr:regex",
30
+ "repeated": "cr:repeated",
31
+ "replace": "cr:replace",
32
+ "sc": "https://schema.org/",
33
+ "separator": "cr:separator",
34
+ "source": "cr:source",
35
+ "subField": "cr:subField",
36
+ "transform": "cr:transform"
37
+ },
38
+ "@type": "Dataset",
39
+ "name": "TSFMI-Synthetic",
40
+ "description": "Synthetic time-series datasets with mathematically exact ground-truth labels for the TSFMI baseline-controlled evaluation protocol. Six standard properties (trend, seasonality, frequency, stationarity, anomaly, change point) plus five hard variants. Each dataset is generated on-demand by deterministic seeded generators in src/datasets/synthetic.py; this manifest documents the canonical seed=42 instantiation used for all confirmatory results in the paper. The TSFMI paper itself is the protocol/benchmark contribution; the datasets here exist only to instantiate the protocol and have no claim of independent novelty.",
41
+ "conformsTo": "http://mlcommons.org/croissant/1.0",
42
+ "license": "https://opensource.org/licenses/MIT",
43
+ "url": "https://anonymous.4open.science/r/tsfmi (anonymized for review)",
44
+ "version": "1.0.0",
45
+ "datePublished": "2026-05-06",
46
+ "isLiveDataset": false,
47
+ "citeAs": "TSFMI: A Baseline-Controlled Evaluation Protocol for Time-Series Foundation Model Representations. Anonymous submission to NeurIPS 2026 Evaluations & Datasets Track.",
48
+ "creator": {
49
+ "@type": "Organization",
50
+ "name": "Anonymous (NeurIPS 2026 ED Track double-blind submission)"
51
+ },
52
+
53
+ "rai:dataCollection": "Synthetic generation via deterministic Python procedures with NumPy random number generators. No human subjects, no scraping, no third-party data ingestion.",
54
+ "rai:dataCollectionType": "Synthetic / procedural",
55
+ "rai:dataPreprocessingProtocol": "None. Generators emit final tensors (N x seq_len) with labels directly.",
56
+ "rai:dataAnnotationProtocol": "Labels are derived analytically from generation parameters (slope sign for trend, period for seasonality, frequency bin for frequency, presence-of-cumsum for stationarity, presence-of-spike for anomaly, presence-of-shift for change-point). No human annotation.",
57
+ "rai:dataLimitations": "Each generator instantiates ONE family of synthetic constructions (e.g., the canonical anomaly task is a single 5-sigma spike on N(0,1) noise) and is therefore a statistically simple test bed. The kurtosis sufficiency of the canonical anomaly task is documented in the paper (sec:anomaly_mechanism); a 'realistic_anomaly' variant with mixed anomaly types is included to bound this limitation. Synthetic-to-real transfer is weak (paper sec 4.2).",
58
+ "rai:dataBiases": "By construction the synthetic data has no human / demographic content and therefore no demographic bias. The 'bias' that does exist is statistical: the canonical generators are deliberately simple, which is why baseline-controlled probing is the recommended interpretation lens.",
59
+ "rai:personalSensitiveInformation": "None. Datasets contain no personal, demographic, medical, or otherwise sensitive information.",
60
+ "rai:dataUseCases": "Probing internal representations of pre-trained time-series foundation models; calibrating new probing protocols against simple non-model baselines; comparing intervention diagnostics (LEACE, LDA steering, CKA) under matched controls.",
61
+ "rai:dataMisuseCases": "Not intended for deployment-time decision making, anomaly detection in production, or as a substitute for any real-world benchmark. Specifically, the canonical anomaly task should not be used to claim a model 'detects anomalies' in any operational sense; see paper sec 6 (Misuse Risks).",
62
+ "rai:dataSocialImpact": "The protocol is intended to raise the rigor bar on TSFM representation claims. Direct social impact is low (synthetic data, no human subjects); indirect impact is methodological -- discouraging over-claiming in time-series probing literature.",
63
+ "rai:syntheticDataIndicator": "All TSFMI-Synthetic data is fully synthetic; no real-world or human-derived signals.",
64
+
65
+ "distribution": [
66
+ {
67
+ "@type": "cr:FileObject",
68
+ "@id": "synthetic-generator-script",
69
+ "name": "synthetic.py",
70
+ "description": "Deterministic generator implementing all six standard and five hard-variant temporal-property datasets. All canonical paper artifacts use the seed=42 instantiation.",
71
+ "contentUrl": "src/datasets/synthetic.py",
72
+ "encodingFormat": "text/x-python",
73
+ "sha256": "computed-by-prepare_anonymous_release.sh"
74
+ },
75
+ {
76
+ "@type": "cr:FileObject",
77
+ "@id": "real-world-loader",
78
+ "name": "real_world.py",
79
+ "description": "Loaders for ETTh1, Weather (Jena Climate), Electricity, Traffic, Exchange-Rate. The TSFMI repository does NOT redistribute these datasets; loaders read user-supplied files from data/ under the original public licenses.",
80
+ "contentUrl": "src/datasets/real_world.py",
81
+ "encodingFormat": "text/x-python"
82
+ },
83
+ {
84
+ "@type": "cr:FileObject",
85
+ "@id": "manifest-json",
86
+ "name": "experiment_manifest.json",
87
+ "description": "Machine-countable provenance of every artifact on disk (canonical 60/20/20 cells, baseline cells, LEACE erasures, CKA matrices, intervention runs, hard-variant comparisons, layer probe runs). Auto-generated by scripts/count_experiments.py.",
88
+ "contentUrl": "outputs/paper/experiment_manifest.json",
89
+ "encodingFormat": "application/json"
90
+ }
91
+ ],
92
+
93
+ "recordSet": [
94
+ {
95
+ "@type": "cr:RecordSet",
96
+ "@id": "synthetic-trend",
97
+ "name": "synthetic_trend",
98
+ "description": "1000 sequences of length 512, three-class (up / down / flat). Labels are the slope-direction class, exact by construction.",
99
+ "field": [
100
+ {"@type": "cr:Field", "name": "sequence", "dataType": "sc:Float", "repeated": true},
101
+ {"@type": "cr:Field", "name": "label", "dataType": "sc:Integer", "description": "0=up, 1=down, 2=flat"}
102
+ ]
103
+ },
104
+ {
105
+ "@type": "cr:RecordSet",
106
+ "@id": "synthetic-seasonality",
107
+ "name": "synthetic_seasonality",
108
+ "description": "1000 sequences of length 512, regression target = period in {8,16,32,64}. Sinusoid + amplitude noise.",
109
+ "field": [
110
+ {"@type": "cr:Field", "name": "sequence", "dataType": "sc:Float", "repeated": true},
111
+ {"@type": "cr:Field", "name": "label", "dataType": "sc:Float", "description": "Period length (regression target)"}
112
+ ]
113
+ },
114
+ {
115
+ "@type": "cr:RecordSet",
116
+ "@id": "synthetic-frequency",
117
+ "name": "synthetic_frequency",
118
+ "description": "1000 sequences of length 512, eight-class frequency-band classification. f_k = (k+1)/seq_len.",
119
+ "field": [
120
+ {"@type": "cr:Field", "name": "sequence", "dataType": "sc:Float", "repeated": true},
121
+ {"@type": "cr:Field", "name": "label", "dataType": "sc:Integer", "description": "Frequency bin index 0..7"}
122
+ ]
123
+ },
124
+ {
125
+ "@type": "cr:RecordSet",
126
+ "@id": "synthetic-stationarity",
127
+ "name": "synthetic_stationarity",
128
+ "description": "1000 sequences of length 512, binary (stationary noise vs non-stationary random walk).",
129
+ "field": [
130
+ {"@type": "cr:Field", "name": "sequence", "dataType": "sc:Float", "repeated": true},
131
+ {"@type": "cr:Field", "name": "label", "dataType": "sc:Integer", "description": "0=stationary, 1=non-stationary"}
132
+ ]
133
+ },
134
+ {
135
+ "@type": "cr:RecordSet",
136
+ "@id": "synthetic-anomaly",
137
+ "name": "synthetic_anomaly",
138
+ "description": "1000 sequences of length 512, binary (normal vs +/- 5-sigma point spike). Single sufficient statistic = kurtosis (paper sec_anomaly_mechanism).",
139
+ "field": [
140
+ {"@type": "cr:Field", "name": "sequence", "dataType": "sc:Float", "repeated": true},
141
+ {"@type": "cr:Field", "name": "label", "dataType": "sc:Integer", "description": "0=normal, 1=anomaly"}
142
+ ]
143
+ },
144
+ {
145
+ "@type": "cr:RecordSet",
146
+ "@id": "synthetic-change-point",
147
+ "name": "synthetic_change_point",
148
+ "description": "1000 sequences of length 512, binary (no change-point vs mean+variance shift at midpoint).",
149
+ "field": [
150
+ {"@type": "cr:Field", "name": "sequence", "dataType": "sc:Float", "repeated": true},
151
+ {"@type": "cr:Field", "name": "label", "dataType": "sc:Integer", "description": "0=no_cp, 1=has_cp"}
152
+ ]
153
+ }
154
+ ]
155
+ }
README.md ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ size_categories:
6
+ - 1K<n<10K
7
+ task_categories:
8
+ - time-series-forecasting
9
+ - tabular-classification
10
+ - tabular-regression
11
+ tags:
12
+ - time-series
13
+ - foundation-models
14
+ - probing
15
+ - benchmark
16
+ - evaluation
17
+ - synthetic
18
+ - baseline-controlled
19
+ - neurips-2026
20
+ pretty_name: TSFMI-Synthetic
21
+ configs:
22
+ - config_name: trend
23
+ data_files:
24
+ - split: train
25
+ path: trend/train.parquet
26
+ - split: validation
27
+ path: trend/val.parquet
28
+ - split: test
29
+ path: trend/test.parquet
30
+ - config_name: seasonality
31
+ data_files:
32
+ - split: train
33
+ path: seasonality/train.parquet
34
+ - split: validation
35
+ path: seasonality/val.parquet
36
+ - split: test
37
+ path: seasonality/test.parquet
38
+ - config_name: frequency
39
+ data_files:
40
+ - split: train
41
+ path: frequency/train.parquet
42
+ - split: validation
43
+ path: frequency/val.parquet
44
+ - split: test
45
+ path: frequency/test.parquet
46
+ - config_name: stationarity
47
+ data_files:
48
+ - split: train
49
+ path: stationarity/train.parquet
50
+ - split: validation
51
+ path: stationarity/val.parquet
52
+ - split: test
53
+ path: stationarity/test.parquet
54
+ - config_name: anomaly
55
+ data_files:
56
+ - split: train
57
+ path: anomaly/train.parquet
58
+ - split: validation
59
+ path: anomaly/val.parquet
60
+ - split: test
61
+ path: anomaly/test.parquet
62
+ - config_name: change_point
63
+ data_files:
64
+ - split: train
65
+ path: change_point/train.parquet
66
+ - split: validation
67
+ path: change_point/val.parquet
68
+ - split: test
69
+ path: change_point/test.parquet
70
+ - config_name: trend_hard
71
+ data_files:
72
+ - split: train
73
+ path: trend_hard/train.parquet
74
+ - split: validation
75
+ path: trend_hard/val.parquet
76
+ - split: test
77
+ path: trend_hard/test.parquet
78
+ - config_name: frequency_hard
79
+ data_files:
80
+ - split: train
81
+ path: frequency_hard/train.parquet
82
+ - split: validation
83
+ path: frequency_hard/val.parquet
84
+ - split: test
85
+ path: frequency_hard/test.parquet
86
+ - config_name: stationarity_hard
87
+ data_files:
88
+ - split: train
89
+ path: stationarity_hard/train.parquet
90
+ - split: validation
91
+ path: stationarity_hard/val.parquet
92
+ - split: test
93
+ path: stationarity_hard/test.parquet
94
+ - config_name: anomaly_hard
95
+ data_files:
96
+ - split: train
97
+ path: anomaly_hard/train.parquet
98
+ - split: validation
99
+ path: anomaly_hard/val.parquet
100
+ - split: test
101
+ path: anomaly_hard/test.parquet
102
+ - config_name: change_point_hard
103
+ data_files:
104
+ - split: train
105
+ path: change_point_hard/train.parquet
106
+ - split: validation
107
+ path: change_point_hard/val.parquet
108
+ - split: test
109
+ path: change_point_hard/test.parquet
110
+ ---
111
+
112
+ # TSFMI-Synthetic
113
+
114
+ Synthetic time-series datasets with **mathematically exact ground-truth labels**
115
+ for the TSFMI baseline-controlled probing protocol.
116
+
117
+ > Companion data for the NeurIPS 2026 Evaluations & Datasets Track submission
118
+ > *"TSFMI: A Baseline-Controlled Evaluation Protocol for Time-Series Foundation
119
+ > Model Representations."* The code (anonymous) lives at
120
+ > https://github.com/evaldataset/TSFMI.
121
+
122
+ ## Why this dataset exists
123
+
124
+ Probing time-series foundation models (TSFMs) is hard because high probe
125
+ accuracy may reflect probe capacity rather than encoded knowledge. TSFMI
126
+ addresses this with **explicit non-model controls** (hand-crafted features,
127
+ raw signal, random projection, ROCKET) evaluated under the same canonical
128
+ 60/20/20 split, the same sklearn estimator, the same 5 seeds, and the same
129
+ bootstrap CI as the model probe. The synthetic datasets in this repository
130
+ provide six standard temporal properties **plus five hard variants** under
131
+ which TSFM representation claims can be evaluated against the controls.
132
+
133
+ ## Configurations (11 tasks)
134
+
135
+ | Config | Type | Classes / Range | Description |
136
+ |---|---|---|---|
137
+ | `trend` | classification | 3 (up / down / flat) | linear slope ± noise |
138
+ | `seasonality` | regression | period ∈ {8, 16, 32, 64} | sinusoid + noise; label = period |
139
+ | `frequency` | classification | 8 frequency bins | discrete sinusoidal frequency bands |
140
+ | `stationarity` | classification | 2 (stationary / non-stationary) | Gaussian noise vs. random walk |
141
+ | `anomaly` | classification | 2 (normal / anomaly) | single ±5σ point spike — **kurtosis is a sufficient statistic** |
142
+ | `change_point` | classification | 2 (none / has-CP) | mean+variance shift at midpoint |
143
+ | `*_hard` (5) | classification | varies | structured background + subtle anomalies / weak slopes / overlapping harmonics / variance drift / mild CP |
144
+
145
+ Each config has 1000 sequences of length 512, partitioned 60/20/20
146
+ (train/val/test = 600/200/200). All data is generated deterministically with
147
+ `seed=42` (data) and `split_seed=0` (partition), matching the canonical
148
+ artefacts in the paper.
149
+
150
+ ## Quick start
151
+
152
+ ```python
153
+ from datasets import load_dataset
154
+
155
+ ds = load_dataset("evaldataset/TSFMI", "anomaly")
156
+ print(ds)
157
+ # DatasetDict({
158
+ # train: 600, validation: 200, test: 200
159
+ # })
160
+ print(ds["train"][0]["sequence"][:8], ds["train"][0]["label"])
161
+ ```
162
+
163
+ Each row contains:
164
+
165
+ - `sequence`: list[float] of length 512 (the time-series window)
166
+ - `label`: int (classification) or float (seasonality regression)
167
+ - `seed`: int (data-generation seed; always 42 here)
168
+ - `split_seed`: int (split seed used to partition this row; 0 for the canonical artefacts)
169
+
170
+ ## Reproduction recipe
171
+
172
+ The same 60/20/20 + 5-seed + bootstrap protocol used in the paper is
173
+ implemented in [the GitHub repository](https://github.com/evaldataset/TSFMI):
174
+
175
+ ```bash
176
+ git clone https://github.com/evaldataset/TSFMI.git && cd TSFMI
177
+ python -m venv .venv && source .venv/bin/activate
178
+ pip install -r requirements.txt && pip install -e ".[dev]"
179
+
180
+ # CPU smoke test (<10 min) — reproduces the headline HC anomaly = 0.858 cell
181
+ make smoke
182
+
183
+ # Full canonical pipeline (~48 A100-hours)
184
+ make extract-representations
185
+ make reproduce-all
186
+ ```
187
+
188
+ ## Headline result reproducible from this dataset
189
+
190
+ Under the canonical 60/20/20 protocol with sklearn `LogisticRegression` and a
191
+ bootstrap 95% CI over 5 seeds:
192
+
193
+ - An 8-D **hand-crafted feature vector** reaches **0.858** test accuracy on
194
+ the canonical `anomaly` configuration.
195
+ - A **single kurtosis feature** alone reaches **0.859**.
196
+ - A **single max-absolute-magnitude feature** alone reaches **0.907**.
197
+ - The best of seven pre-trained TSFMs reaches **0.753** (TimesFM); all other
198
+ TSFMs (MOMENT, Chronos, PatchTST, GPT4TS, Timer, Moirai) score 0.50–0.73.
199
+
200
+ This **inversion** is what motivates the baseline-controlled discipline of
201
+ TSFMI and is documented in §3.3 and Appendix A.8 of the paper.
202
+
203
+ ## License
204
+
205
+ MIT. The synthetic data is fully procedurally generated; there is no
206
+ human-derived or scraped content. Real-world datasets used elsewhere by the
207
+ TSFMI evaluation pipeline (ETTh1, Weather, Electricity, Traffic, Exchange
208
+ Rate, UCR) are **not redistributed here** and remain under their respective
209
+ original licenses; see the GitHub `LICENSE` file for details.
210
+
211
+ ## Citation
212
+
213
+ ```bibtex
214
+ @misc{tsfmi2026,
215
+ title = {{TSFMI}: A Baseline-Controlled Evaluation Protocol for Time-Series Foundation Model Representations},
216
+ author = {Anonymous Authors},
217
+ howpublished = {Anonymous submission to the NeurIPS 2026 Evaluations \& Datasets Track},
218
+ year = {2026},
219
+ url = {https://github.com/evaldataset/TSFMI}
220
+ }
221
+ ```
222
+
223
+ ## Responsible AI notes
224
+
225
+ - **Data collection**: synthetic procedural generation, no human subjects, no scraping.
226
+ - **Limitations**: each generator instantiates one statistically simple test bed; the canonical anomaly task is kurtosis-trivial by design (`realistic_anomaly` variant in the GitHub repo bounds this).
227
+ - **Biases**: none — purely synthetic with no demographic content.
228
+ - **Personal/sensitive info**: none.
229
+ - **Use cases**: probing TSFM internal representations, calibrating new probing protocols against simple non-model baselines.
230
+ - **Misuse cases**: not intended as a production anomaly detector; do not interpret the canonical anomaly task as evidence that any model "detects anomalies" in any operational sense.
231
+ - **Synthetic data indicator**: 100% synthetic.
232
+
233
+ The full Croissant 1.0 + RAI metadata is provided as `CROISSANT.json` in this
234
+ repository.
anomaly/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a233899d828d3652bad17880d9386c4fa2e927d24606903fa2b6800edce59064
3
+ size 630251
anomaly/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d266c28a9b4e6fe2afcd01007556b8816576a5bec88d1231473798f466872cb
3
+ size 1855835
anomaly/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1d7a613f4fbd87286427dc627d2a6df70e27b1a2dfe02b04312c2fdc43a1b2b
3
+ size 630195
anomaly_hard/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6bb9e57b3b1e1b28d3c1b20925015ed4fdc3ee57cd1c9c39a23ea02ebee2257
3
+ size 630215
anomaly_hard/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01f1b73a03ae98bb66f2301289af0430d7e32e509c6c58770cd77304a90593b0
3
+ size 1855405
anomaly_hard/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b86e80e32b2ce852e7b1ae450b8bbbb02fd26ba6d765d28ea299831b30dc84dd
3
+ size 630167
change_point/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45856dd7b69cd89132e28de8fec136c401855defd3eca178bcd5975611f6f569
3
+ size 630299
change_point/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47ef9b91174512ad033e129d98277921c7fb2e916a0b00a86459bbe23def9414
3
+ size 1856127
change_point/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb7b8a3fb2129a5f8a533df160cc71e25fa008d1b0a894e65c19ff8e715f7b5c
3
+ size 630251
change_point_hard/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c7169eaea0ea7f1fb00e65979d16f7cd42ab8f9322b9b5662377f02a5385710
3
+ size 630239
change_point_hard/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e5f0b1bdd5d83520ebb24cc0ad871eccf4e23a084812c4f8379194f4fa8b5ee
3
+ size 1855985
change_point_hard/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19fa03368e951fe1fac422dbd786bf04e2695af2e71d9bef9cd1cb597dc6bcab
3
+ size 630251
frequency/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:617a67707c2a3919acbde1fab5be0900e93c00e509ad6b21cd5ffc419af28890
3
+ size 630237
frequency/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a14864629c21a3dcca9a6757a52263ef7e4a740cbbf3b94e9ad8f7c1a143f264
3
+ size 1855571
frequency/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf9ea474317816cc30f214d712ad6435abd789226854e6bb8ca419a813e946d5
3
+ size 630237
frequency_hard/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5041f06c28fe7ead7a1015f2c63d2985b6c740409385cf5f495978155896abd8
3
+ size 630265
frequency_hard/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:716ea29f710ac330897c2ba3c2e43c7b9ef7462659e9e761fd9ea626b55fef98
3
+ size 1856332
frequency_hard/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab527181fc625a9ec3ac8f0f320997c0e0bd254dc6907966c5a449e275e68695
3
+ size 630399
seasonality/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5eb5469333f5a6f367108d7fce3f3e6b832243c468ac3d1fe2646235ae3567c3
3
+ size 630236
seasonality/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b18955bff209c078091a94465dde2debde6e125b59788e8efd323b685a15db9
3
+ size 1855606
seasonality/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b019acc978717d145af29b570e4e1818850875b267b29a96d332548a92349215
3
+ size 630212
stationarity/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b586f1e6af7b2ac5f3c880eb5e311e0f0078a82800c877a9678daa9a0f99ceb0
3
+ size 630407
stationarity/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8df030ed9ac46d0388c8ab631df08297cc8abd320baf206c83d2a3065e5d0761
3
+ size 1856715
stationarity/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea3aee730bc65c2c3d7b2742bdc1a507ca10ee89cb91a24152a3c322d30e9aa2
3
+ size 630323
stationarity_hard/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a384267a61a63bf06efa7198d94a1fef72134d4e7e59095f1de82a343992786
3
+ size 630231
stationarity_hard/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2027120e637442ea8cc63fa0562e2698b252edc8d58afa0a0fcd6a6f851c8bc
3
+ size 1856005
stationarity_hard/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8ccc6891a01c3041a96535b37698d91702662f98b0c330effb5fa285c6968c7
3
+ size 630183
trend/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe3b3399968d1df8fface6141df9de214342746d285c29f5fa9b7b7a88ca78d1
3
+ size 630394
trend/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65e32d9ca211d08d2cd0c727c1954b81d9563f6f5b4a87b69a8efc036f8efad3
3
+ size 1856846
trend/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76b6587aa9cec4f9fd2e2af5527ee7ae62bb7431fab928673204a51b22d1c7d8
3
+ size 630404
trend_hard/test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:989c6545ad476a646a61a4da91efcd2f228b54bce262b6582da4e2d0c17c45ae
3
+ size 630270
trend_hard/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0688079abafb38ac2e4f76bd21a42288596bed18dbd95e2fac1e5e6a944d99a
3
+ size 1855988
trend_hard/val.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a16ae25cbae7a8ac2ef384c2efb41fbd1d4d0493024feafeeb4bede60ad9c327
3
+ size 630280