EvalData commited on
Commit
8a33434
·
verified ·
1 Parent(s): 1e8b689

Fix Croissant 1.0 schema: add @language , conformsTo, source/extract

Browse files
Files changed (1) hide show
  1. croissant.json +231 -32
croissant.json CHANGED
@@ -1,13 +1,44 @@
1
  {
2
  "@context": {
 
3
  "@vocab": "https://schema.org/",
 
 
 
4
  "cr": "http://mlcommons.org/croissant/",
5
  "rai": "http://mlcommons.org/croissant/RAI/",
6
- "sc": "https://schema.org/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  },
8
  "@type": "sc:Dataset",
9
  "name": "TabMI-Bench",
10
  "description": "A protocol benchmark for evaluating mechanistic interpretability (MI) methods on Tabular Foundation Models (TFMs). Provides hook-based activation extraction for 5 TFMs across 3 architectural families, controlled synthetic probes (4 function types), negative controls, a 4-step evaluation protocol, and reference baseline measurements.",
 
11
  "url": "https://github.com/evaldataset/TabMI-Bench",
12
  "sameAs": "https://huggingface.co/datasets/EvalData/TabMI-Bench",
13
  "license": "https://opensource.org/licenses/MIT",
@@ -27,68 +58,236 @@
27
  "steering vectors"
28
  ],
29
  "inLanguage": "en",
 
30
  "distribution": [
31
  {
32
  "@type": "cr:FileObject",
33
- "name": "source-code",
34
- "description": "Python source code for hook implementations, data generators, and experiment scripts",
 
35
  "contentUrl": "https://github.com/evaldataset/TabMI-Bench",
36
- "encodingFormat": "application/zip"
 
37
  },
38
  {
39
  "@type": "cr:FileObject",
40
- "name": "synthetic-data-generator",
41
- "description": "Deterministic synthetic data generators for 4 function families (bilinear, sinusoidal, polynomial, mixed)",
42
- "contentUrl": "src/data/synthetic_generator.py",
43
- "encodingFormat": "text/x-python"
 
 
44
  },
45
  {
46
  "@type": "cr:FileObject",
47
- "name": "reference-baselines",
48
- "description": "Aggregated multi-seed reference baseline results (JSON format)",
49
- "contentUrl": "results/rd5_fullscale/aggregated/aggregated_results.json",
50
- "encodingFormat": "application/json"
 
 
51
  },
52
  {
53
  "@type": "cr:FileObject",
54
- "name": "per-seed-results",
55
- "description": "Per-seed experiment results for reproducibility verification",
56
- "contentUrl": "results/",
57
- "encodingFormat": "application/json"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  }
59
  ],
60
- "cr:recordSet": [
61
  {
62
  "@type": "cr:RecordSet",
 
63
  "name": "synthetic-probing-results",
64
- "description": "Layer-wise intermediary probing R² values for each model and seed",
65
  "field": [
66
- {"@type": "cr:Field", "name": "model", "description": "TFM model name", "dataType": "sc:Text"},
67
- {"@type": "cr:Field", "name": "seed", "description": "Random seed", "dataType": "sc:Integer"},
68
- {"@type": "cr:Field", "name": "function_type", "description": "Synthetic function family", "dataType": "sc:Text"},
69
- {"@type": "cr:Field", "name": "layer", "description": "Layer index", "dataType": "sc:Integer"},
70
- {"@type": "cr:Field", "name": "intermediary_r2", "description": "Linear probe for intermediary variable", "dataType": "sc:Float"}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  ]
72
  },
73
  {
74
  "@type": "cr:RecordSet",
 
75
  "name": "causal-tracing-results",
76
- "description": "Noising-based causal sensitivity per layer for each model and seed",
77
  "field": [
78
- {"@type": "cr:Field", "name": "model", "description": "TFM model name", "dataType": "sc:Text"},
79
- {"@type": "cr:Field", "name": "seed", "description": "Random seed", "dataType": "sc:Integer"},
80
- {"@type": "cr:Field", "name": "layer", "description": "Layer index", "dataType": "sc:Integer"},
81
- {"@type": "cr:Field", "name": "normalized_sensitivity", "description": "Normalized MSE increase from noise injection", "dataType": "sc:Float"}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  ]
83
  },
84
  {
85
  "@type": "cr:RecordSet",
 
86
  "name": "applicability-matrix",
87
- "description": "MI technique applicability labels per model",
88
  "field": [
89
- {"@type": "cr:Field", "name": "technique", "description": "MI technique name", "dataType": "sc:Text"},
90
- {"@type": "cr:Field", "name": "model", "description": "TFM model name", "dataType": "sc:Text"},
91
- {"@type": "cr:Field", "name": "label", "description": "Supported / Limited / Not established", "dataType": "sc:Text"}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  ]
93
  }
94
  ],
 
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": "sc:Dataset",
39
  "name": "TabMI-Bench",
40
  "description": "A protocol benchmark for evaluating mechanistic interpretability (MI) methods on Tabular Foundation Models (TFMs). Provides hook-based activation extraction for 5 TFMs across 3 architectural families, controlled synthetic probes (4 function types), negative controls, a 4-step evaluation protocol, and reference baseline measurements.",
41
+ "conformsTo": "http://mlcommons.org/croissant/1.0",
42
  "url": "https://github.com/evaldataset/TabMI-Bench",
43
  "sameAs": "https://huggingface.co/datasets/EvalData/TabMI-Bench",
44
  "license": "https://opensource.org/licenses/MIT",
 
58
  "steering vectors"
59
  ],
60
  "inLanguage": "en",
61
+ "citeAs": "@inproceedings{anonymous2026tabmibench, title={TabMI-Bench: Evaluating Mechanistic Interpretability Methods Across Tabular Foundation Model Architectures}, author={Anonymous}, booktitle={Advances in Neural Information Processing Systems (NeurIPS) Evaluations \\& Datasets Track}, year={2026}}",
62
  "distribution": [
63
  {
64
  "@type": "cr:FileObject",
65
+ "@id": "github-repo",
66
+ "name": "github-repo",
67
+ "description": "Public GitHub repository containing all source code, hooks, evaluation scripts, tests, and frozen artifacts.",
68
  "contentUrl": "https://github.com/evaldataset/TabMI-Bench",
69
+ "encodingFormat": "application/zip",
70
+ "sha256": "main-branch-head"
71
  },
72
  {
73
  "@type": "cr:FileObject",
74
+ "@id": "huggingface-dataset",
75
+ "name": "huggingface-dataset",
76
+ "description": "HuggingFace dataset repository with frozen JSON aggregated artifacts driving paper-facing tables and figures.",
77
+ "contentUrl": "https://huggingface.co/datasets/EvalData/TabMI-Bench",
78
+ "encodingFormat": "application/json",
79
+ "sha256": "main-branch-head"
80
  },
81
  {
82
  "@type": "cr:FileObject",
83
+ "@id": "rd5-fullscale-aggregated",
84
+ "name": "rd5-fullscale-aggregated",
85
+ "description": "Aggregated 5-seed multi-model intermediary probing results (Table 1 source).",
86
+ "contentUrl": "https://huggingface.co/datasets/EvalData/TabMI-Bench/resolve/main/rd5_fullscale_aggregated.json",
87
+ "encodingFormat": "application/json",
88
+ "sha256": "main-branch-head"
89
  },
90
  {
91
  "@type": "cr:FileObject",
92
+ "@id": "tabdpt-probing-3seed",
93
+ "name": "tabdpt-probing-3seed",
94
+ "description": "TabDPT in-family holdout probing results aggregated over 3 seeds.",
95
+ "contentUrl": "https://huggingface.co/datasets/EvalData/TabMI-Bench/resolve/main/tabdpt_probing_3seed.json",
96
+ "encodingFormat": "application/json",
97
+ "sha256": "main-branch-head"
98
+ },
99
+ {
100
+ "@type": "cr:FileObject",
101
+ "@id": "tabdpt-causal-3seed",
102
+ "name": "tabdpt-causal-3seed",
103
+ "description": "TabDPT noising-based causal tracing results aggregated over 3 seeds.",
104
+ "contentUrl": "https://huggingface.co/datasets/EvalData/TabMI-Bench/resolve/main/tabdpt_causal_3seed.json",
105
+ "encodingFormat": "application/json",
106
+ "sha256": "main-branch-head"
107
+ },
108
+ {
109
+ "@type": "cr:FileObject",
110
+ "@id": "nam-holdout",
111
+ "name": "nam-holdout",
112
+ "description": "NAM out-of-family holdout per-seed layer-wise R^2 profiles.",
113
+ "contentUrl": "https://huggingface.co/datasets/EvalData/TabMI-Bench/resolve/main/nam_holdout.json",
114
+ "encodingFormat": "application/json",
115
+ "sha256": "main-branch-head"
116
+ },
117
+ {
118
+ "@type": "cr:FileObject",
119
+ "@id": "lofo-primary-endpoint",
120
+ "name": "lofo-primary-endpoint",
121
+ "description": "Leave-one-function-out robustness for the primary endpoint sigma2_profile.",
122
+ "contentUrl": "https://huggingface.co/datasets/EvalData/TabMI-Bench/resolve/main/lofo_primary_endpoint.json",
123
+ "encodingFormat": "application/json",
124
+ "sha256": "main-branch-head"
125
+ },
126
+ {
127
+ "@type": "cr:FileObject",
128
+ "@id": "tabpfn25-fullscale-aggregated",
129
+ "name": "tabpfn25-fullscale-aggregated",
130
+ "description": "TabPFN v2 vs v2.5 logit-lens, coefficient probing, intermediary probing, and CKA aggregated over 3 seeds.",
131
+ "contentUrl": "https://huggingface.co/datasets/EvalData/TabMI-Bench/resolve/main/tabpfn25_fullscale_aggregated.json",
132
+ "encodingFormat": "application/json",
133
+ "sha256": "main-branch-head"
134
  }
135
  ],
136
+ "recordSet": [
137
  {
138
  "@type": "cr:RecordSet",
139
+ "@id": "synthetic-probing-results",
140
  "name": "synthetic-probing-results",
141
+ "description": "Layer-wise intermediary probing R^2 values for each (model, seed, function_type, layer). Source: rd5_fullscale_aggregated.json (intermediary_probing block).",
142
  "field": [
143
+ {
144
+ "@type": "cr:Field",
145
+ "@id": "synthetic-probing-results/model",
146
+ "name": "model",
147
+ "description": "TFM model name (one of: tabpfn, tabicl, tabdpt, iltm, nam).",
148
+ "dataType": "sc:Text",
149
+ "source": {
150
+ "fileObject": {"@id": "rd5-fullscale-aggregated"},
151
+ "extract": {"jsonPath": "$.intermediary_probing.*"}
152
+ }
153
+ },
154
+ {
155
+ "@type": "cr:Field",
156
+ "@id": "synthetic-probing-results/seed",
157
+ "name": "seed",
158
+ "description": "Random seed (one of: 42, 123, 456, 789, 1024).",
159
+ "dataType": "sc:Integer",
160
+ "source": {
161
+ "fileObject": {"@id": "rd5-fullscale-aggregated"},
162
+ "extract": {"jsonPath": "$.seeds[*]"}
163
+ }
164
+ },
165
+ {
166
+ "@type": "cr:Field",
167
+ "@id": "synthetic-probing-results/function_type",
168
+ "name": "function_type",
169
+ "description": "Synthetic function family (bilinear, sinusoidal, polynomial, mixed).",
170
+ "dataType": "sc:Text",
171
+ "source": {
172
+ "fileObject": {"@id": "rd5-fullscale-aggregated"},
173
+ "extract": {"jsonPath": "$.function_type"}
174
+ }
175
+ },
176
+ {
177
+ "@type": "cr:Field",
178
+ "@id": "synthetic-probing-results/layer",
179
+ "name": "layer",
180
+ "description": "Layer index (0-based).",
181
+ "dataType": "sc:Integer",
182
+ "source": {
183
+ "fileObject": {"@id": "rd5-fullscale-aggregated"},
184
+ "extract": {"jsonPath": "$.intermediary_probing.tabpfn.intermediary_r2_mean[*]"}
185
+ }
186
+ },
187
+ {
188
+ "@type": "cr:Field",
189
+ "@id": "synthetic-probing-results/intermediary_r2",
190
+ "name": "intermediary_r2",
191
+ "description": "Linear-probe R^2 for the intermediary variable at this (model, seed, function, layer).",
192
+ "dataType": "sc:Float",
193
+ "source": {
194
+ "fileObject": {"@id": "rd5-fullscale-aggregated"},
195
+ "extract": {"jsonPath": "$.intermediary_probing.*.intermediary_r2_mean[*]"}
196
+ }
197
+ }
198
  ]
199
  },
200
  {
201
  "@type": "cr:RecordSet",
202
+ "@id": "causal-tracing-results",
203
  "name": "causal-tracing-results",
204
+ "description": "Noising-based causal sensitivity per layer for each (model, seed, layer). Source: tabdpt_causal_3seed.json and rd5_fullscale_aggregated.json patching block.",
205
  "field": [
206
+ {
207
+ "@type": "cr:Field",
208
+ "@id": "causal-tracing-results/model",
209
+ "name": "model",
210
+ "description": "TFM model name.",
211
+ "dataType": "sc:Text",
212
+ "source": {
213
+ "fileObject": {"@id": "tabdpt-causal-3seed"},
214
+ "extract": {"jsonPath": "$.model"}
215
+ }
216
+ },
217
+ {
218
+ "@type": "cr:Field",
219
+ "@id": "causal-tracing-results/seed",
220
+ "name": "seed",
221
+ "description": "Random seed.",
222
+ "dataType": "sc:Integer",
223
+ "source": {
224
+ "fileObject": {"@id": "tabdpt-causal-3seed"},
225
+ "extract": {"jsonPath": "$.seeds[*]"}
226
+ }
227
+ },
228
+ {
229
+ "@type": "cr:Field",
230
+ "@id": "causal-tracing-results/layer",
231
+ "name": "layer",
232
+ "description": "Layer index (0-based).",
233
+ "dataType": "sc:Integer",
234
+ "source": {
235
+ "fileObject": {"@id": "tabdpt-causal-3seed"},
236
+ "extract": {"jsonPath": "$.mean_normalized_sensitivity[*]"}
237
+ }
238
+ },
239
+ {
240
+ "@type": "cr:Field",
241
+ "@id": "causal-tracing-results/normalized_sensitivity",
242
+ "name": "normalized_sensitivity",
243
+ "description": "Normalized MSE-increase from layer-wise noise injection (max-normalized within profile).",
244
+ "dataType": "sc:Float",
245
+ "source": {
246
+ "fileObject": {"@id": "tabdpt-causal-3seed"},
247
+ "extract": {"jsonPath": "$.mean_normalized_sensitivity[*]"}
248
+ }
249
+ }
250
  ]
251
  },
252
  {
253
  "@type": "cr:RecordSet",
254
+ "@id": "applicability-matrix",
255
  "name": "applicability-matrix",
256
+ "description": "Evidence-coded MI technique applicability labels per model (Table 8 in paper, hand-curated reference table; canonical encoding in BENCHMARK_CARD.md and Table 8 LaTeX source).",
257
  "field": [
258
+ {
259
+ "@type": "cr:Field",
260
+ "@id": "applicability-matrix/technique",
261
+ "name": "technique",
262
+ "description": "MI technique name (e.g. linear-probing, logit-lens, activation-patching, sae, cka).",
263
+ "dataType": "sc:Text",
264
+ "source": {
265
+ "fileObject": {"@id": "github-repo"},
266
+ "extract": {"jsonPath": "$.technique"}
267
+ }
268
+ },
269
+ {
270
+ "@type": "cr:Field",
271
+ "@id": "applicability-matrix/model",
272
+ "name": "model",
273
+ "description": "TFM model name.",
274
+ "dataType": "sc:Text",
275
+ "source": {
276
+ "fileObject": {"@id": "github-repo"},
277
+ "extract": {"jsonPath": "$.model"}
278
+ }
279
+ },
280
+ {
281
+ "@type": "cr:Field",
282
+ "@id": "applicability-matrix/label",
283
+ "name": "label",
284
+ "description": "Applicability label: Supported, Limited, or Not established.",
285
+ "dataType": "sc:Text",
286
+ "source": {
287
+ "fileObject": {"@id": "github-repo"},
288
+ "extract": {"jsonPath": "$.label"}
289
+ }
290
+ }
291
  ]
292
  }
293
  ],