nyderx commited on
Commit
897d692
·
verified ·
1 Parent(s): 931b23f

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +137 -0
  2. croissant.json +1004 -0
README.md ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: CAD-TCM
3
+ license: cc-by-4.0
4
+ configs:
5
+ - config_name: default
6
+ data_files: data.csv
7
+ language:
8
+ - en
9
+ task_categories:
10
+ - tabular-classification
11
+ task_ids:
12
+ - tabular-multi-class-classification
13
+ size_categories:
14
+ - 100K<n<1M
15
+ tags:
16
+ - anomaly-detection
17
+ - continual-learning
18
+ - continual-anomaly-detection
19
+ - predictive-maintenance
20
+ - steel-manufacturing
21
+ - tandem-cold-mill
22
+ - tabular
23
+ - synthetic
24
+ ---
25
+
26
+ # CAD-TCM
27
+
28
+ ## Dataset Summary
29
+
30
+ **CAD-TCM** is a single-source continual anomaly detection benchmark scenario for predictive maintenance in steel manufacturing. It is derived from **TCM: Benchmark Datasets for Predictive Maintenance in Steel Manufacturing**, a synthetic dataset generated from a physics-based mathematical model of a 5-stand tandem cold mill (TCM), and converts the original tabular sensor data into a sequence of concept-grouped tasks.
31
+
32
+ The dataset contains **108,872 samples**, **8 tasks**, and has a reported **18.66% anomaly ratio in the test set**.
33
+
34
+
35
+ ## Intended Use
36
+
37
+ This dataset is intended for research on:
38
+
39
+ - continual anomaly detection;
40
+ - continual learning for tabular data;
41
+ - predictive maintenance in industrial/manufacturing processes;
42
+ - robustness under distribution shift;
43
+ - task ordering in continual-learning benchmarks;
44
+ - forgetting and knowledge transfer across related process-monitoring concepts;
45
+ - benchmarking anomaly detectors under sequential task exposure.
46
+
47
+ The intended use is **defensive/industrial machine learning research**, i.e. detecting equipment faults and process anomalies to support predictive maintenance.
48
+
49
+ ## Dataset Source
50
+
51
+ - TCM: Benchmark Datasets for Predictive Maintenance in Steel Manufacturing: `https://zenodo.org/records/11469702`
52
+
53
+ The source data is entirely **synthetic**, generated from a physics-based mathematical model of a 5-stand tandem cold mill simulating four fault types: reduction-scheme irregularities, work-roll friction increase, bearing failure (elevated motor torque), and motor efficiency loss.
54
+
55
+
56
+ ## Dataset Files
57
+
58
+ The repository contains the following files:
59
+
60
+ | File | Description |
61
+ |---|---|
62
+ | `data.csv` | Main tabular dataset file. |
63
+ | `orderings.json` | Predefined task orderings for continual-learning evaluation. |
64
+ | `croissant.json` | Croissant metadata describing the dataset. |
65
+
66
+ ## Dataset Structure
67
+
68
+ The main file is:
69
+
70
+ ```text
71
+ data.csv
72
+ ```
73
+
74
+ The dataset contains task metadata, binary labels, and numerical rolling-mill process/sensor features.
75
+
76
+ ### Core Columns
77
+
78
+ | Column | Type | Description |
79
+ |---|---:|---|
80
+ | `task_id` | integer | Numeric identifier of the continual-learning task. |
81
+ | `task_name` | string | Name of the task, e.g. `tcm_0`. |
82
+ | `task_split` | string | Split assignment for the row. |
83
+ | `label` | integer | Binary anomaly label. `0` denotes normal operation and `1` denotes an anomalous/faulty condition. |
84
+
85
+ ### Task Identifiers
86
+
87
+ The dataset contains the following task identifiers:
88
+
89
+ `tcm_0`, `tcm_1`, `tcm_2`, `tcm_3`, `tcm_4`, `tcm_5`, `tcm_6`, `tcm_7`
90
+
91
+ ### Feature Columns
92
+
93
+ The remaining columns are numerical process/sensor features from the 5-stand tandem cold mill, including per-stand measurements. Representative examples include:
94
+
95
+ - `thickness_entry`, `thickness_exit`
96
+ - `width`
97
+ - `ys_entry`, `ys_exit` (yield strength)
98
+ - `work_roll_diam_1` … `work_roll_diam_5`
99
+ - `work_roll_mileage_1` … `work_roll_mileage_5`
100
+ - `reduction_1` … `reduction_5`
101
+ - `tension_0` … `tension_5`
102
+ - `roll_speed_1` … `roll_speed_5`
103
+ - `force_1` … `force_5`
104
+ - `torque_1` … `torque_5`
105
+ - `gap_1` … `gap_5`
106
+ - `motor_power_1` … `motor_power_5`
107
+
108
+ For the complete schema, see `croissant.json`.
109
+
110
+ ## Task Orderings
111
+
112
+ The dataset provides six predefined orderings in `orderings.json`. These orderings define different continual-learning evaluation regimes over the same task set.
113
+
114
+ | Ordering | Task sequence |
115
+ |---|---|
116
+ | `curriculum_asc` | `tcm_2` → `tcm_5` → `tcm_7` → `tcm_6` → `tcm_4` → `tcm_0` → `tcm_1` → `tcm_3` |
117
+ | `curriculum_desc` | `tcm_3` → `tcm_1` → `tcm_0` → `tcm_4` → `tcm_6` → `tcm_7` → `tcm_5` → `tcm_2` |
118
+ | `generalization_desc` | `tcm_0` → `tcm_5` → `tcm_2` → `tcm_7` → `tcm_4` → `tcm_6` → `tcm_1` → `tcm_3` |
119
+ | `generalization_asc` | `tcm_3` → `tcm_1` → `tcm_6` → `tcm_4` → `tcm_7` → `tcm_2` → `tcm_5` → `tcm_0` |
120
+ | `smooth_drift` | `tcm_5` → `tcm_7` → `tcm_0` → `tcm_2` → `tcm_1` → `tcm_6` → `tcm_4` → `tcm_3` |
121
+ | `abrupt_drift` | `tcm_0` → `tcm_3` → `tcm_5` → `tcm_1` → `tcm_2` → `tcm_6` → `tcm_7` → `tcm_4` |
122
+
123
+ These orderings are intended to expose complementary continual-learning dynamics, including curriculum-like adaptation, generalization-oriented ordering, smooth drift, and abrupt drift.
124
+
125
+ ## Dataset Creation
126
+ The details of dataset creation can be found in our paper: [link](https://arxiv.org/abs/2607.18289)
127
+
128
+ ## Citation
129
+ When using the dataset, please cite:
130
+ ```
131
+ @article{faber2026towards,
132
+ title={Towards Principled Continual Anomaly Detection: A Systematic Framework and Benchmark Scenarios},
133
+ author={Faber, Kamil and Smendowski, Mateusz and Corizzo, Roberto},
134
+ journal={arXiv preprint arXiv:2607.18289},
135
+ year={2026}
136
+ }
137
+ ```
croissant.json ADDED
@@ -0,0 +1,1004 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": {
11
+ "@id": "cr:data",
12
+ "@type": "@json"
13
+ },
14
+ "dataType": {
15
+ "@id": "cr:dataType",
16
+ "@type": "@vocab"
17
+ },
18
+ "dct": "http://purl.org/dc/terms/",
19
+ "equivalentProperty": "cr:equivalentProperty",
20
+ "examples": {
21
+ "@id": "cr:examples",
22
+ "@type": "@json"
23
+ },
24
+ "extract": "cr:extract",
25
+ "field": "cr:field",
26
+ "fileProperty": "cr:fileProperty",
27
+ "fileObject": "cr:fileObject",
28
+ "fileSet": "cr:fileSet",
29
+ "format": "cr:format",
30
+ "includes": "cr:includes",
31
+ "isLiveDataset": "cr:isLiveDataset",
32
+ "jsonPath": "cr:jsonPath",
33
+ "key": "cr:key",
34
+ "md5": "cr:md5",
35
+ "parentField": "cr:parentField",
36
+ "path": "cr:path",
37
+ "recordSet": "cr:recordSet",
38
+ "references": "cr:references",
39
+ "regex": "cr:regex",
40
+ "repeated": "cr:repeated",
41
+ "replace": "cr:replace",
42
+ "samplingRate": "cr:samplingRate",
43
+ "sc": "https://schema.org/",
44
+ "separator": "cr:separator",
45
+ "source": "cr:source",
46
+ "subField": "cr:subField",
47
+ "transform": "cr:transform"
48
+ },
49
+ "@type": "sc:Dataset",
50
+ "name": "CAD-TCM",
51
+ "description": "CAD-TCM is a continual anomaly detection benchmark scenario derived from the TCM dataset (Benchmark Datasets for Predictive Maintenance in Steel Manufacturing), which simulates a 5-stand tandem cold mill (TCM) using a physics-based mathematical model. The original synthetic sensor data is converted into a sequence of 8 concept-grouped tasks (tcm_0-tcm_7). The dataset contains 108,872 samples with an 18.66% anomaly ratio in the test set, covering four synthetic fault types: reduction-scheme irregularities, work-roll friction increase, bearing failure (elevated motor torque), and motor efficiency loss.",
52
+ "conformsTo": [
53
+ "http://mlcommons.org/croissant/1.1",
54
+ "http://mlcommons.org/croissant/RAI/1.0"
55
+ ],
56
+ "citeAs": "@misc{faber2026towards, title={Towards Principled Continual Anomaly Detection: A Systematic Framework and Benchmark Scenarios}, author={Faber, Kamil and Smendowski, Mateusz and Corizzo, Roberto}, year={2026}, eprint={2607.18289}, archivePrefix={arXiv}, primaryClass={cs.LG}, doi={10.48550/arXiv.2607.18289}, url={https://arxiv.org/abs/2607.18289}}",
57
+ "creator": [
58
+ {
59
+ "@type": "sc:Person",
60
+ "name": "Kamil Faber"
61
+ },
62
+ {
63
+ "@type": "sc:Person",
64
+ "name": "Roberto Corizzo"
65
+ }
66
+ ],
67
+ "inLanguage": "en",
68
+ "keywords": [
69
+ "predictive maintenance",
70
+ "steel manufacturing",
71
+ "tandem cold mill",
72
+ "anomaly-detection",
73
+ "continual-learning",
74
+ "continual-anomaly-detection",
75
+ "tabular"
76
+ ],
77
+ "license": "https://creativecommons.org/licenses/by/4.0/",
78
+ "prov:wasDerivedFrom": "https://zenodo.org/records/11469702",
79
+ "prov:wasGeneratedBy": "https://github.com/lifelonglab/CAD-Benchmarks-Framework",
80
+ "rai:dataBiases": "Data is entirely synthetic, generated from a physics-based simulation of a single mill configuration; it reflects only the four modeled fault types and does not capture the full distribution of real-world rolling-mill anomalies or plant-to-plant variability.",
81
+ "rai:dataLimitations": "Synthetic data generated via a mathematical model of a 5-stand tandem cold mill rather than measured from a real production line; it may not fully capture real sensor noise, calibration drift, or interactions between simultaneous real-world faults. Anomaly labels are limited to four synthetic fault classes (reduction-scheme irregularities, work-roll friction increase, bearing failure via elevated motor torque, and motor efficiency loss).",
82
+ "rai:dataSocialImpact": "Intended for industrial predictive-maintenance and defensive anomaly-detection research. Low misuse risk: the data represents synthetic process telemetry from a simulated rolling-mill process, not real plant operations or individuals.",
83
+ "rai:dataUseCases": [
84
+ "Training",
85
+ "Testing",
86
+ "Validation"
87
+ ],
88
+ "rai:hasSyntheticData": true,
89
+ "rai:personalSensitiveInformation": "No PII. All fields are synthetic physical process measurements (thickness, force, torque, speed, tension, motor power, roll diameter/mileage) produced by a mathematical simulation; no data was collected from real individuals or identifiable facilities.",
90
+ "url": "https://huggingface.co/datasets/lifelonglab/CAD-TCM",
91
+ "version": "1.0.0",
92
+ "distribution": [
93
+ {
94
+ "@type": "cr:FileObject",
95
+ "@id": "data.csv",
96
+ "name": "data.csv",
97
+ "description": "Tabular dataset rows.",
98
+ "contentSize": "47255844 B",
99
+ "contentUrl": "data.csv",
100
+ "encodingFormat": "text/csv",
101
+ "sha256": "9fecf011bd001607b110df4c7da715d6401070c1c75c8f90babb3fe716b00eee"
102
+ },
103
+ {
104
+ "@type": "cr:FileObject",
105
+ "@id": "orderings.json",
106
+ "name": "orderings.json",
107
+ "description": "Task orderings for continual-learning evaluation.",
108
+ "contentSize": "1442 B",
109
+ "contentUrl": "orderings.json",
110
+ "encodingFormat": "application/json",
111
+ "sha256": "4d11816b6840d391dc9102db5fdda7dfa55d3a160be4c2d23044b5b3fcedb4ec"
112
+ }
113
+ ],
114
+ "recordSet": [
115
+ {
116
+ "@type": "cr:RecordSet",
117
+ "@id": "data",
118
+ "name": "data",
119
+ "description": "Per-row records from data.csv with auto-inferred schema.",
120
+ "field": [
121
+ {
122
+ "@type": "cr:Field",
123
+ "@id": "data/thickness_entry",
124
+ "name": "thickness_entry",
125
+ "dataType": "sc:Float",
126
+ "source": {
127
+ "fileObject": {
128
+ "@id": "data.csv"
129
+ },
130
+ "extract": {
131
+ "column": "thickness_entry"
132
+ }
133
+ }
134
+ },
135
+ {
136
+ "@type": "cr:Field",
137
+ "@id": "data/thickness_exit",
138
+ "name": "thickness_exit",
139
+ "dataType": "sc:Float",
140
+ "source": {
141
+ "fileObject": {
142
+ "@id": "data.csv"
143
+ },
144
+ "extract": {
145
+ "column": "thickness_exit"
146
+ }
147
+ }
148
+ },
149
+ {
150
+ "@type": "cr:Field",
151
+ "@id": "data/width",
152
+ "name": "width",
153
+ "dataType": "sc:Float",
154
+ "source": {
155
+ "fileObject": {
156
+ "@id": "data.csv"
157
+ },
158
+ "extract": {
159
+ "column": "width"
160
+ }
161
+ }
162
+ },
163
+ {
164
+ "@type": "cr:Field",
165
+ "@id": "data/ys_entry",
166
+ "name": "ys_entry",
167
+ "dataType": "sc:Float",
168
+ "source": {
169
+ "fileObject": {
170
+ "@id": "data.csv"
171
+ },
172
+ "extract": {
173
+ "column": "ys_entry"
174
+ }
175
+ }
176
+ },
177
+ {
178
+ "@type": "cr:Field",
179
+ "@id": "data/ys_exit",
180
+ "name": "ys_exit",
181
+ "dataType": "sc:Float",
182
+ "source": {
183
+ "fileObject": {
184
+ "@id": "data.csv"
185
+ },
186
+ "extract": {
187
+ "column": "ys_exit"
188
+ }
189
+ }
190
+ },
191
+ {
192
+ "@type": "cr:Field",
193
+ "@id": "data/work_roll_diam_1",
194
+ "name": "work_roll_diam_1",
195
+ "dataType": "sc:Float",
196
+ "source": {
197
+ "fileObject": {
198
+ "@id": "data.csv"
199
+ },
200
+ "extract": {
201
+ "column": "work_roll_diam_1"
202
+ }
203
+ }
204
+ },
205
+ {
206
+ "@type": "cr:Field",
207
+ "@id": "data/work_roll_diam_2",
208
+ "name": "work_roll_diam_2",
209
+ "dataType": "sc:Float",
210
+ "source": {
211
+ "fileObject": {
212
+ "@id": "data.csv"
213
+ },
214
+ "extract": {
215
+ "column": "work_roll_diam_2"
216
+ }
217
+ }
218
+ },
219
+ {
220
+ "@type": "cr:Field",
221
+ "@id": "data/work_roll_diam_3",
222
+ "name": "work_roll_diam_3",
223
+ "dataType": "sc:Float",
224
+ "source": {
225
+ "fileObject": {
226
+ "@id": "data.csv"
227
+ },
228
+ "extract": {
229
+ "column": "work_roll_diam_3"
230
+ }
231
+ }
232
+ },
233
+ {
234
+ "@type": "cr:Field",
235
+ "@id": "data/work_roll_diam_4",
236
+ "name": "work_roll_diam_4",
237
+ "dataType": "sc:Float",
238
+ "source": {
239
+ "fileObject": {
240
+ "@id": "data.csv"
241
+ },
242
+ "extract": {
243
+ "column": "work_roll_diam_4"
244
+ }
245
+ }
246
+ },
247
+ {
248
+ "@type": "cr:Field",
249
+ "@id": "data/work_roll_diam_5",
250
+ "name": "work_roll_diam_5",
251
+ "dataType": "sc:Float",
252
+ "source": {
253
+ "fileObject": {
254
+ "@id": "data.csv"
255
+ },
256
+ "extract": {
257
+ "column": "work_roll_diam_5"
258
+ }
259
+ }
260
+ },
261
+ {
262
+ "@type": "cr:Field",
263
+ "@id": "data/work_roll_mileage_1",
264
+ "name": "work_roll_mileage_1",
265
+ "dataType": "sc:Float",
266
+ "source": {
267
+ "fileObject": {
268
+ "@id": "data.csv"
269
+ },
270
+ "extract": {
271
+ "column": "work_roll_mileage_1"
272
+ }
273
+ }
274
+ },
275
+ {
276
+ "@type": "cr:Field",
277
+ "@id": "data/work_roll_mileage_2",
278
+ "name": "work_roll_mileage_2",
279
+ "dataType": "sc:Float",
280
+ "source": {
281
+ "fileObject": {
282
+ "@id": "data.csv"
283
+ },
284
+ "extract": {
285
+ "column": "work_roll_mileage_2"
286
+ }
287
+ }
288
+ },
289
+ {
290
+ "@type": "cr:Field",
291
+ "@id": "data/work_roll_mileage_3",
292
+ "name": "work_roll_mileage_3",
293
+ "dataType": "sc:Float",
294
+ "source": {
295
+ "fileObject": {
296
+ "@id": "data.csv"
297
+ },
298
+ "extract": {
299
+ "column": "work_roll_mileage_3"
300
+ }
301
+ }
302
+ },
303
+ {
304
+ "@type": "cr:Field",
305
+ "@id": "data/work_roll_mileage_4",
306
+ "name": "work_roll_mileage_4",
307
+ "dataType": "sc:Float",
308
+ "source": {
309
+ "fileObject": {
310
+ "@id": "data.csv"
311
+ },
312
+ "extract": {
313
+ "column": "work_roll_mileage_4"
314
+ }
315
+ }
316
+ },
317
+ {
318
+ "@type": "cr:Field",
319
+ "@id": "data/work_roll_mileage_5",
320
+ "name": "work_roll_mileage_5",
321
+ "dataType": "sc:Float",
322
+ "source": {
323
+ "fileObject": {
324
+ "@id": "data.csv"
325
+ },
326
+ "extract": {
327
+ "column": "work_roll_mileage_5"
328
+ }
329
+ }
330
+ },
331
+ {
332
+ "@type": "cr:Field",
333
+ "@id": "data/reduction_1",
334
+ "name": "reduction_1",
335
+ "dataType": "sc:Float",
336
+ "source": {
337
+ "fileObject": {
338
+ "@id": "data.csv"
339
+ },
340
+ "extract": {
341
+ "column": "reduction_1"
342
+ }
343
+ }
344
+ },
345
+ {
346
+ "@type": "cr:Field",
347
+ "@id": "data/reduction_2",
348
+ "name": "reduction_2",
349
+ "dataType": "sc:Float",
350
+ "source": {
351
+ "fileObject": {
352
+ "@id": "data.csv"
353
+ },
354
+ "extract": {
355
+ "column": "reduction_2"
356
+ }
357
+ }
358
+ },
359
+ {
360
+ "@type": "cr:Field",
361
+ "@id": "data/reduction_3",
362
+ "name": "reduction_3",
363
+ "dataType": "sc:Float",
364
+ "source": {
365
+ "fileObject": {
366
+ "@id": "data.csv"
367
+ },
368
+ "extract": {
369
+ "column": "reduction_3"
370
+ }
371
+ }
372
+ },
373
+ {
374
+ "@type": "cr:Field",
375
+ "@id": "data/reduction_4",
376
+ "name": "reduction_4",
377
+ "dataType": "sc:Float",
378
+ "source": {
379
+ "fileObject": {
380
+ "@id": "data.csv"
381
+ },
382
+ "extract": {
383
+ "column": "reduction_4"
384
+ }
385
+ }
386
+ },
387
+ {
388
+ "@type": "cr:Field",
389
+ "@id": "data/reduction_5",
390
+ "name": "reduction_5",
391
+ "dataType": "sc:Float",
392
+ "source": {
393
+ "fileObject": {
394
+ "@id": "data.csv"
395
+ },
396
+ "extract": {
397
+ "column": "reduction_5"
398
+ }
399
+ }
400
+ },
401
+ {
402
+ "@type": "cr:Field",
403
+ "@id": "data/tension_0",
404
+ "name": "tension_0",
405
+ "dataType": "sc:Float",
406
+ "source": {
407
+ "fileObject": {
408
+ "@id": "data.csv"
409
+ },
410
+ "extract": {
411
+ "column": "tension_0"
412
+ }
413
+ }
414
+ },
415
+ {
416
+ "@type": "cr:Field",
417
+ "@id": "data/tension_1",
418
+ "name": "tension_1",
419
+ "dataType": "sc:Float",
420
+ "source": {
421
+ "fileObject": {
422
+ "@id": "data.csv"
423
+ },
424
+ "extract": {
425
+ "column": "tension_1"
426
+ }
427
+ }
428
+ },
429
+ {
430
+ "@type": "cr:Field",
431
+ "@id": "data/tension_2",
432
+ "name": "tension_2",
433
+ "dataType": "sc:Float",
434
+ "source": {
435
+ "fileObject": {
436
+ "@id": "data.csv"
437
+ },
438
+ "extract": {
439
+ "column": "tension_2"
440
+ }
441
+ }
442
+ },
443
+ {
444
+ "@type": "cr:Field",
445
+ "@id": "data/tension_3",
446
+ "name": "tension_3",
447
+ "dataType": "sc:Float",
448
+ "source": {
449
+ "fileObject": {
450
+ "@id": "data.csv"
451
+ },
452
+ "extract": {
453
+ "column": "tension_3"
454
+ }
455
+ }
456
+ },
457
+ {
458
+ "@type": "cr:Field",
459
+ "@id": "data/tension_4",
460
+ "name": "tension_4",
461
+ "dataType": "sc:Float",
462
+ "source": {
463
+ "fileObject": {
464
+ "@id": "data.csv"
465
+ },
466
+ "extract": {
467
+ "column": "tension_4"
468
+ }
469
+ }
470
+ },
471
+ {
472
+ "@type": "cr:Field",
473
+ "@id": "data/tension_5",
474
+ "name": "tension_5",
475
+ "dataType": "sc:Float",
476
+ "source": {
477
+ "fileObject": {
478
+ "@id": "data.csv"
479
+ },
480
+ "extract": {
481
+ "column": "tension_5"
482
+ }
483
+ }
484
+ },
485
+ {
486
+ "@type": "cr:Field",
487
+ "@id": "data/roll_speed_1",
488
+ "name": "roll_speed_1",
489
+ "dataType": "sc:Float",
490
+ "source": {
491
+ "fileObject": {
492
+ "@id": "data.csv"
493
+ },
494
+ "extract": {
495
+ "column": "roll_speed_1"
496
+ }
497
+ }
498
+ },
499
+ {
500
+ "@type": "cr:Field",
501
+ "@id": "data/roll_speed_2",
502
+ "name": "roll_speed_2",
503
+ "dataType": "sc:Float",
504
+ "source": {
505
+ "fileObject": {
506
+ "@id": "data.csv"
507
+ },
508
+ "extract": {
509
+ "column": "roll_speed_2"
510
+ }
511
+ }
512
+ },
513
+ {
514
+ "@type": "cr:Field",
515
+ "@id": "data/roll_speed_3",
516
+ "name": "roll_speed_3",
517
+ "dataType": "sc:Float",
518
+ "source": {
519
+ "fileObject": {
520
+ "@id": "data.csv"
521
+ },
522
+ "extract": {
523
+ "column": "roll_speed_3"
524
+ }
525
+ }
526
+ },
527
+ {
528
+ "@type": "cr:Field",
529
+ "@id": "data/roll_speed_4",
530
+ "name": "roll_speed_4",
531
+ "dataType": "sc:Float",
532
+ "source": {
533
+ "fileObject": {
534
+ "@id": "data.csv"
535
+ },
536
+ "extract": {
537
+ "column": "roll_speed_4"
538
+ }
539
+ }
540
+ },
541
+ {
542
+ "@type": "cr:Field",
543
+ "@id": "data/roll_speed_5",
544
+ "name": "roll_speed_5",
545
+ "dataType": "sc:Float",
546
+ "source": {
547
+ "fileObject": {
548
+ "@id": "data.csv"
549
+ },
550
+ "extract": {
551
+ "column": "roll_speed_5"
552
+ }
553
+ }
554
+ },
555
+ {
556
+ "@type": "cr:Field",
557
+ "@id": "data/force_1",
558
+ "name": "force_1",
559
+ "dataType": "sc:Float",
560
+ "source": {
561
+ "fileObject": {
562
+ "@id": "data.csv"
563
+ },
564
+ "extract": {
565
+ "column": "force_1"
566
+ }
567
+ }
568
+ },
569
+ {
570
+ "@type": "cr:Field",
571
+ "@id": "data/force_2",
572
+ "name": "force_2",
573
+ "dataType": "sc:Float",
574
+ "source": {
575
+ "fileObject": {
576
+ "@id": "data.csv"
577
+ },
578
+ "extract": {
579
+ "column": "force_2"
580
+ }
581
+ }
582
+ },
583
+ {
584
+ "@type": "cr:Field",
585
+ "@id": "data/force_3",
586
+ "name": "force_3",
587
+ "dataType": "sc:Float",
588
+ "source": {
589
+ "fileObject": {
590
+ "@id": "data.csv"
591
+ },
592
+ "extract": {
593
+ "column": "force_3"
594
+ }
595
+ }
596
+ },
597
+ {
598
+ "@type": "cr:Field",
599
+ "@id": "data/force_4",
600
+ "name": "force_4",
601
+ "dataType": "sc:Float",
602
+ "source": {
603
+ "fileObject": {
604
+ "@id": "data.csv"
605
+ },
606
+ "extract": {
607
+ "column": "force_4"
608
+ }
609
+ }
610
+ },
611
+ {
612
+ "@type": "cr:Field",
613
+ "@id": "data/force_5",
614
+ "name": "force_5",
615
+ "dataType": "sc:Float",
616
+ "source": {
617
+ "fileObject": {
618
+ "@id": "data.csv"
619
+ },
620
+ "extract": {
621
+ "column": "force_5"
622
+ }
623
+ }
624
+ },
625
+ {
626
+ "@type": "cr:Field",
627
+ "@id": "data/torque_1",
628
+ "name": "torque_1",
629
+ "dataType": "sc:Float",
630
+ "source": {
631
+ "fileObject": {
632
+ "@id": "data.csv"
633
+ },
634
+ "extract": {
635
+ "column": "torque_1"
636
+ }
637
+ }
638
+ },
639
+ {
640
+ "@type": "cr:Field",
641
+ "@id": "data/torque_2",
642
+ "name": "torque_2",
643
+ "dataType": "sc:Float",
644
+ "source": {
645
+ "fileObject": {
646
+ "@id": "data.csv"
647
+ },
648
+ "extract": {
649
+ "column": "torque_2"
650
+ }
651
+ }
652
+ },
653
+ {
654
+ "@type": "cr:Field",
655
+ "@id": "data/torque_3",
656
+ "name": "torque_3",
657
+ "dataType": "sc:Float",
658
+ "source": {
659
+ "fileObject": {
660
+ "@id": "data.csv"
661
+ },
662
+ "extract": {
663
+ "column": "torque_3"
664
+ }
665
+ }
666
+ },
667
+ {
668
+ "@type": "cr:Field",
669
+ "@id": "data/torque_4",
670
+ "name": "torque_4",
671
+ "dataType": "sc:Float",
672
+ "source": {
673
+ "fileObject": {
674
+ "@id": "data.csv"
675
+ },
676
+ "extract": {
677
+ "column": "torque_4"
678
+ }
679
+ }
680
+ },
681
+ {
682
+ "@type": "cr:Field",
683
+ "@id": "data/torque_5",
684
+ "name": "torque_5",
685
+ "dataType": "sc:Float",
686
+ "source": {
687
+ "fileObject": {
688
+ "@id": "data.csv"
689
+ },
690
+ "extract": {
691
+ "column": "torque_5"
692
+ }
693
+ }
694
+ },
695
+ {
696
+ "@type": "cr:Field",
697
+ "@id": "data/gap_1",
698
+ "name": "gap_1",
699
+ "dataType": "sc:Float",
700
+ "source": {
701
+ "fileObject": {
702
+ "@id": "data.csv"
703
+ },
704
+ "extract": {
705
+ "column": "gap_1"
706
+ }
707
+ }
708
+ },
709
+ {
710
+ "@type": "cr:Field",
711
+ "@id": "data/gap_2",
712
+ "name": "gap_2",
713
+ "dataType": "sc:Float",
714
+ "source": {
715
+ "fileObject": {
716
+ "@id": "data.csv"
717
+ },
718
+ "extract": {
719
+ "column": "gap_2"
720
+ }
721
+ }
722
+ },
723
+ {
724
+ "@type": "cr:Field",
725
+ "@id": "data/gap_3",
726
+ "name": "gap_3",
727
+ "dataType": "sc:Float",
728
+ "source": {
729
+ "fileObject": {
730
+ "@id": "data.csv"
731
+ },
732
+ "extract": {
733
+ "column": "gap_3"
734
+ }
735
+ }
736
+ },
737
+ {
738
+ "@type": "cr:Field",
739
+ "@id": "data/gap_4",
740
+ "name": "gap_4",
741
+ "dataType": "sc:Float",
742
+ "source": {
743
+ "fileObject": {
744
+ "@id": "data.csv"
745
+ },
746
+ "extract": {
747
+ "column": "gap_4"
748
+ }
749
+ }
750
+ },
751
+ {
752
+ "@type": "cr:Field",
753
+ "@id": "data/gap_5",
754
+ "name": "gap_5",
755
+ "dataType": "sc:Float",
756
+ "source": {
757
+ "fileObject": {
758
+ "@id": "data.csv"
759
+ },
760
+ "extract": {
761
+ "column": "gap_5"
762
+ }
763
+ }
764
+ },
765
+ {
766
+ "@type": "cr:Field",
767
+ "@id": "data/motor_power_1",
768
+ "name": "motor_power_1",
769
+ "dataType": "sc:Float",
770
+ "source": {
771
+ "fileObject": {
772
+ "@id": "data.csv"
773
+ },
774
+ "extract": {
775
+ "column": "motor_power_1"
776
+ }
777
+ }
778
+ },
779
+ {
780
+ "@type": "cr:Field",
781
+ "@id": "data/motor_power_2",
782
+ "name": "motor_power_2",
783
+ "dataType": "sc:Float",
784
+ "source": {
785
+ "fileObject": {
786
+ "@id": "data.csv"
787
+ },
788
+ "extract": {
789
+ "column": "motor_power_2"
790
+ }
791
+ }
792
+ },
793
+ {
794
+ "@type": "cr:Field",
795
+ "@id": "data/motor_power_3",
796
+ "name": "motor_power_3",
797
+ "dataType": "sc:Float",
798
+ "source": {
799
+ "fileObject": {
800
+ "@id": "data.csv"
801
+ },
802
+ "extract": {
803
+ "column": "motor_power_3"
804
+ }
805
+ }
806
+ },
807
+ {
808
+ "@type": "cr:Field",
809
+ "@id": "data/motor_power_4",
810
+ "name": "motor_power_4",
811
+ "dataType": "sc:Float",
812
+ "source": {
813
+ "fileObject": {
814
+ "@id": "data.csv"
815
+ },
816
+ "extract": {
817
+ "column": "motor_power_4"
818
+ }
819
+ }
820
+ },
821
+ {
822
+ "@type": "cr:Field",
823
+ "@id": "data/motor_power_5",
824
+ "name": "motor_power_5",
825
+ "dataType": "sc:Float",
826
+ "source": {
827
+ "fileObject": {
828
+ "@id": "data.csv"
829
+ },
830
+ "extract": {
831
+ "column": "motor_power_5"
832
+ }
833
+ }
834
+ },
835
+ {
836
+ "@type": "cr:Field",
837
+ "@id": "data/label",
838
+ "name": "label",
839
+ "dataType": "sc:Integer",
840
+ "source": {
841
+ "fileObject": {
842
+ "@id": "data.csv"
843
+ },
844
+ "extract": {
845
+ "column": "label"
846
+ }
847
+ }
848
+ },
849
+ {
850
+ "@type": "cr:Field",
851
+ "@id": "data/task_split",
852
+ "name": "task_split",
853
+ "dataType": "sc:Text",
854
+ "source": {
855
+ "fileObject": {
856
+ "@id": "data.csv"
857
+ },
858
+ "extract": {
859
+ "column": "task_split"
860
+ }
861
+ }
862
+ },
863
+ {
864
+ "@type": "cr:Field",
865
+ "@id": "data/task_id",
866
+ "name": "task_id",
867
+ "dataType": "sc:Integer",
868
+ "source": {
869
+ "fileObject": {
870
+ "@id": "data.csv"
871
+ },
872
+ "extract": {
873
+ "column": "task_id"
874
+ }
875
+ }
876
+ },
877
+ {
878
+ "@type": "cr:Field",
879
+ "@id": "data/task_name",
880
+ "name": "task_name",
881
+ "dataType": "sc:Text",
882
+ "source": {
883
+ "fileObject": {
884
+ "@id": "data.csv"
885
+ },
886
+ "extract": {
887
+ "column": "task_name"
888
+ }
889
+ }
890
+ }
891
+ ]
892
+ },
893
+ {
894
+ "@type": "cr:RecordSet",
895
+ "@id": "orderings",
896
+ "name": "orderings",
897
+ "description": "Task orderings for continual-learning evaluation. Inlined so the Croissant is self-contained.",
898
+ "key": {
899
+ "@id": "orderings/name"
900
+ },
901
+ "field": [
902
+ {
903
+ "@type": "cr:Field",
904
+ "@id": "orderings/name",
905
+ "name": "name",
906
+ "dataType": "sc:Text"
907
+ },
908
+ {
909
+ "@type": "cr:Field",
910
+ "@id": "orderings/task_sequence",
911
+ "name": "task_sequence",
912
+ "dataType": "sc:Text",
913
+ "references": {
914
+ "field": {
915
+ "@id": "data/task_name"
916
+ }
917
+ },
918
+ "repeated": true
919
+ }
920
+ ],
921
+ "data": [
922
+ {
923
+ "orderings/name": "curriculum_asc",
924
+ "orderings/task_sequence": [
925
+ "tcm_2",
926
+ "tcm_5",
927
+ "tcm_7",
928
+ "tcm_6",
929
+ "tcm_4",
930
+ "tcm_0",
931
+ "tcm_1",
932
+ "tcm_3"
933
+ ]
934
+ },
935
+ {
936
+ "orderings/name": "curriculum_desc",
937
+ "orderings/task_sequence": [
938
+ "tcm_3",
939
+ "tcm_1",
940
+ "tcm_0",
941
+ "tcm_4",
942
+ "tcm_6",
943
+ "tcm_7",
944
+ "tcm_5",
945
+ "tcm_2"
946
+ ]
947
+ },
948
+ {
949
+ "orderings/name": "generalization_desc",
950
+ "orderings/task_sequence": [
951
+ "tcm_0",
952
+ "tcm_5",
953
+ "tcm_2",
954
+ "tcm_7",
955
+ "tcm_4",
956
+ "tcm_6",
957
+ "tcm_1",
958
+ "tcm_3"
959
+ ]
960
+ },
961
+ {
962
+ "orderings/name": "generalization_asc",
963
+ "orderings/task_sequence": [
964
+ "tcm_3",
965
+ "tcm_1",
966
+ "tcm_6",
967
+ "tcm_4",
968
+ "tcm_7",
969
+ "tcm_2",
970
+ "tcm_5",
971
+ "tcm_0"
972
+ ]
973
+ },
974
+ {
975
+ "orderings/name": "smooth_drift",
976
+ "orderings/task_sequence": [
977
+ "tcm_5",
978
+ "tcm_7",
979
+ "tcm_0",
980
+ "tcm_2",
981
+ "tcm_1",
982
+ "tcm_6",
983
+ "tcm_4",
984
+ "tcm_3"
985
+ ]
986
+ },
987
+ {
988
+ "orderings/name": "abrupt_drift",
989
+ "orderings/task_sequence": [
990
+ "tcm_0",
991
+ "tcm_3",
992
+ "tcm_5",
993
+ "tcm_1",
994
+ "tcm_2",
995
+ "tcm_6",
996
+ "tcm_7",
997
+ "tcm_4"
998
+ ]
999
+ }
1000
+ ]
1001
+ }
1002
+ ],
1003
+ "datePublished": "2026-05-06"
1004
+ }