EvalData commited on
Commit
361ae2f
·
verified ·
1 Parent(s): cf89c11

Upload croissant.json

Browse files
Files changed (1) hide show
  1. croissant.json +128 -0
croissant.json ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "license": "https://opensource.org/licenses/MIT",
13
+ "version": "1.0.0",
14
+ "datePublished": "2026-04-15",
15
+ "creator": {
16
+ "@type": "sc:Organization",
17
+ "name": "Anonymous (double-blind submission)"
18
+ },
19
+ "keywords": [
20
+ "mechanistic interpretability",
21
+ "tabular foundation models",
22
+ "benchmark",
23
+ "probing",
24
+ "activation patching",
25
+ "sparse autoencoders",
26
+ "steering vectors"
27
+ ],
28
+ "inLanguage": "en",
29
+ "distribution": [
30
+ {
31
+ "@type": "cr:FileObject",
32
+ "name": "source-code",
33
+ "description": "Python source code for hook implementations, data generators, and experiment scripts",
34
+ "contentUrl": "https://github.com/evaldataset/TabMI-Bench",
35
+ "encodingFormat": "application/zip"
36
+ },
37
+ {
38
+ "@type": "cr:FileObject",
39
+ "name": "synthetic-data-generator",
40
+ "description": "Deterministic synthetic data generators for 4 function families (bilinear, sinusoidal, polynomial, mixed)",
41
+ "contentUrl": "src/data/synthetic_generator.py",
42
+ "encodingFormat": "text/x-python"
43
+ },
44
+ {
45
+ "@type": "cr:FileObject",
46
+ "name": "reference-baselines",
47
+ "description": "Aggregated multi-seed reference baseline results (JSON format)",
48
+ "contentUrl": "results/rd5_fullscale/aggregated/aggregated_results.json",
49
+ "encodingFormat": "application/json"
50
+ },
51
+ {
52
+ "@type": "cr:FileObject",
53
+ "name": "per-seed-results",
54
+ "description": "Per-seed experiment results for reproducibility verification",
55
+ "contentUrl": "results/",
56
+ "encodingFormat": "application/json"
57
+ }
58
+ ],
59
+ "cr:recordSet": [
60
+ {
61
+ "@type": "cr:RecordSet",
62
+ "name": "synthetic-probing-results",
63
+ "description": "Layer-wise intermediary probing R² values for each model and seed",
64
+ "field": [
65
+ {"@type": "cr:Field", "name": "model", "description": "TFM model name", "dataType": "sc:Text"},
66
+ {"@type": "cr:Field", "name": "seed", "description": "Random seed", "dataType": "sc:Integer"},
67
+ {"@type": "cr:Field", "name": "function_type", "description": "Synthetic function family", "dataType": "sc:Text"},
68
+ {"@type": "cr:Field", "name": "layer", "description": "Layer index", "dataType": "sc:Integer"},
69
+ {"@type": "cr:Field", "name": "intermediary_r2", "description": "Linear probe R² for intermediary variable", "dataType": "sc:Float"}
70
+ ]
71
+ },
72
+ {
73
+ "@type": "cr:RecordSet",
74
+ "name": "causal-tracing-results",
75
+ "description": "Noising-based causal sensitivity per layer for each model and seed",
76
+ "field": [
77
+ {"@type": "cr:Field", "name": "model", "description": "TFM model name", "dataType": "sc:Text"},
78
+ {"@type": "cr:Field", "name": "seed", "description": "Random seed", "dataType": "sc:Integer"},
79
+ {"@type": "cr:Field", "name": "layer", "description": "Layer index", "dataType": "sc:Integer"},
80
+ {"@type": "cr:Field", "name": "normalized_sensitivity", "description": "Normalized MSE increase from noise injection", "dataType": "sc:Float"}
81
+ ]
82
+ },
83
+ {
84
+ "@type": "cr:RecordSet",
85
+ "name": "applicability-matrix",
86
+ "description": "MI technique applicability labels per model",
87
+ "field": [
88
+ {"@type": "cr:Field", "name": "technique", "description": "MI technique name", "dataType": "sc:Text"},
89
+ {"@type": "cr:Field", "name": "model", "description": "TFM model name", "dataType": "sc:Text"},
90
+ {"@type": "cr:Field", "name": "label", "description": "Supported / Limited / Not established", "dataType": "sc:Text"}
91
+ ]
92
+ }
93
+ ],
94
+ "rai:dataCollection": "Synthetic data is generated deterministically from known mathematical functions with fixed random seeds. Real-world datasets are sourced from scikit-learn built-in datasets and OpenML public repositories. No human subjects data is collected.",
95
+ "rai:dataCollectionType": "Synthetic generation + public dataset aggregation",
96
+ "rai:dataCollectionMissingness": "One real-world dataset (Concrete) was excluded due to an OpenML cache failure. All other datasets loaded successfully.",
97
+ "rai:dataBiases": "Synthetic probes use continuous numeric features only; categorical features and missing values are not tested in the core benchmark. Real-world datasets inherit biases from their original sources (e.g., California Housing reflects historical housing patterns). The benchmark evaluates MI methods, not model fairness.",
98
+ "rai:dataLimitations": [
99
+ "Core experiments use small scale (N_train=100, N_test=50)",
100
+ "Only regression synthetic probes; classification probes are secondary",
101
+ "5 models from 3 architectural families; generalization to future TFMs is not guaranteed",
102
+ "Computation profiles are descriptive reference baselines, not universal laws",
103
+ "Benchmark outputs are diagnostic measurements, not deployment certifications"
104
+ ],
105
+ "rai:dataUseCases": "Evaluating new MI techniques on TFMs, benchmarking new TFM architectures against MI reference baselines, educational resource for understanding TFM internal computation.",
106
+ "rai:dataSensitiveInformation": "No personally identifiable information (PII). No sensitive attributes beyond those in the original public datasets (e.g., Adult Income contains demographic attributes).",
107
+ "rai:dataSocialImpact": "Positive: enables standardized MI evaluation for tabular AI in high-stakes domains (credit scoring, medical diagnosis). Risk: benchmark outputs may create false confidence if over-interpreted as safety certifications. Mitigation: explicit scope limitations and risk caveats in the paper.",
108
+ "rai:dataSyntheticGeneration": "Core synthetic probes are fully synthetic with known ground-truth intermediary variables. Real-world datasets are not synthetic.",
109
+ "rai:dataMaintenancePlan": "Version-pinned snapshots ensure reproducibility. New model hooks and reference baselines will be added as TFMs are released. Community contributions welcomed via pull requests.",
110
+ "rai:dataSourceDatasets": [
111
+ {"name": "California Housing", "url": "https://www.openml.org/d/8092", "license": "CC0", "purpose": "real-world causal tracing + steering validation"},
112
+ {"name": "Diabetes (sklearn)", "url": "https://scikit-learn.org/stable/datasets/toy_dataset.html", "license": "BSD-3-Clause", "purpose": "real-world causal tracing + steering validation"},
113
+ {"name": "Wine Quality", "url": "https://www.openml.org/d/287", "license": "CC0", "purpose": "real-world steering"},
114
+ {"name": "Bike Sharing", "url": "https://www.openml.org/d/44063", "license": "CC0", "purpose": "real-world steering"},
115
+ {"name": "Abalone", "url": "https://www.openml.org/d/183", "license": "CC0", "purpose": "real-world causal tracing"},
116
+ {"name": "Boston Housing", "url": "https://www.openml.org/d/531", "license": "CC0", "purpose": "real-world causal tracing"},
117
+ {"name": "Energy Efficiency", "url": "https://www.openml.org/d/42178", "license": "CC0", "purpose": "real-world causal tracing"},
118
+ {"name": "Breast Cancer (sklearn)", "url": "https://scikit-learn.org/stable/datasets/toy_dataset.html", "license": "BSD-3-Clause", "purpose": "real-world causal tracing + classification probing"},
119
+ {"name": "Iris (sklearn)", "url": "https://scikit-learn.org/stable/datasets/toy_dataset.html", "license": "BSD-3-Clause", "purpose": "classification probing"},
120
+ {"name": "Adult Income", "url": "https://www.openml.org/d/1590", "license": "CC0", "purpose": "real-world causal tracing"},
121
+ {"name": "Credit-G", "url": "https://www.openml.org/d/31", "license": "CC0", "purpose": "real-world causal tracing"}
122
+ ],
123
+ "rai:dataProvenance": {
124
+ "collection": "All real-world datasets are loaded at runtime from public repositories (scikit-learn built-in datasets, OpenML.org); no new human-subjects data collection performed.",
125
+ "preprocessing": "Real-world: StandardScaler applied with fixed random seed for train/test split; categorical features encoded via OpenML's default encoders. Synthetic: features generated via numpy.random.default_rng(seed) and labels computed from closed-form mathematical functions with optional Gaussian noise.",
126
+ "annotation": "No human annotation. Synthetic-probe ground-truth intermediary variables (e.g., a*b for bilinear probe) are computed analytically from input features."
127
+ }
128
+ }