kernel-14 commited on
Commit
600479f
·
verified ·
1 Parent(s): ce75879

create README.md

Browse files
Files changed (1) hide show
  1. README.md +216 -0
README.md ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: cc-by-4.0
5
+ pretty_name: SemanticAlign-Bench
6
+ tags:
7
+ - research-papers
8
+ - machine-learning
9
+ - benchmarking
10
+ - llm-evaluation
11
+ - factuality
12
+ - structured-extraction
13
+ - paper-understanding
14
+ - claim-extraction
15
+ - paper-to-code
16
+ task_categories:
17
+ - question-answering
18
+ - text-generation
19
+ size_categories:
20
+ - 1K<n<10K
21
+ annotations_creators:
22
+ - expert-generated
23
+ language_creators:
24
+ - found
25
+ ---
26
+
27
+ # SemanticAlign-Bench
28
+
29
+ A benchmark dataset for evaluating AI agents' ability to extract **structured claims** from top-tier machine learning conference papers. The dataset tests whether agents can accurately capture four dimensions of paper content — numerical facts, method formulas, experimental protocols, and procedural pipelines — without hallucination, omission, or misordering.
30
+
31
+ ## Dataset Description
32
+
33
+ - **Papers**: 30 papers from **ICLR 2025**, **ICML 2025**, and **NeurIPS 2025**, spanning 5 domains (6 papers each):
34
+ | Domain | Count |
35
+ |---|---|
36
+ | Probabilistic Inference / Generative Models | 6 |
37
+ | Reinforcement Learning | 6 |
38
+ | Computer Vision | 6 |
39
+ | NLP / LLM | 6 |
40
+ | Numerical Methods / Scientific Computing | 6 |
41
+ - **Total SAU Claims**: **1,426** (Semantic Alignment Unit — the atomic unit of paper understanding)
42
+ - **Size**: ~519 MB
43
+
44
+ ### The Four SAU Dimensions
45
+
46
+ Each paper is decomposed into claims across four diagnostic dimensions, ordered from micro to macro:
47
+
48
+ | Dimension | Name | Count | Definition |
49
+ |-----------|------|-------|------------|
50
+ | **D1** | Numerical Precision | 497 | Hyperparameters, configuration values, thresholds, scaling factors |
51
+ | **D2** | Formulas / Algorithms | 476 | Mathematical formulas, algorithm steps, architectural mechanisms |
52
+ | **D3** | Experiment Protocols | 291 | Datasets, baselines, evaluation metrics, experimental scope |
53
+ | **D4** | Pipelines / Procedures | 162 | Multi-step execution order: phase ordering, algorithm step sequencing |
54
+
55
+ ### Paper Venue Distribution
56
+
57
+ All 30 papers are from top-tier 2025 ML conferences:
58
+
59
+ | Venue | Count |
60
+ |-------|-------|
61
+ | ICLR 2025 | 15 |
62
+ | ICML 2025 | 8 |
63
+ | NeurIPS 2025 | 7 |
64
+
65
+ ## Dataset Structure
66
+
67
+ ### Per-Paper Directory Layout
68
+
69
+ ```
70
+ <paper_id>/
71
+ config.yaml # Paper metadata (title, venue, year, domain, arxiv URL)
72
+ paper.md # Full paper text in markdown
73
+ paper.pdf # Original PDF
74
+ sau.json # SAU claims — the core annotation file
75
+ images/ # Paper figures extracted from PDF
76
+ blacklist.txt # Tokens excluded from extraction (e.g., author names)
77
+ ```
78
+
79
+ ### SAU Claim Format (`sau.json`)
80
+
81
+ ```json
82
+ {
83
+ "paper_id": "adjoint-matching",
84
+ "paper_title": "Adjoint Matching: Fine-tuning Flow and Diffusion Models with Memoryless SOC",
85
+ "D1": [
86
+ {
87
+ "id": "adjoint-matching-D1-001",
88
+ "claim": "Image resolution for autoencoder pre-training and generation: 512×512",
89
+ "source": "Section 7"
90
+ }
91
+ ],
92
+ "D2": [ ... ],
93
+ "D3": [ ... ],
94
+ "D4": [ ... ]
95
+ }
96
+ ```
97
+
98
+ Each claim includes:
99
+ - `id`: Unique identifier for cross-referencing (`{paper}-{dimension}-{number}`)
100
+ - `claim`: The extracted claim text (natural language, self-contained statement)
101
+ - `source`: Paper section where the claim originates
102
+
103
+ ### Annotation Quality
104
+
105
+ All 1,426 claims have undergone **multi-version human review** with systematic error checks:
106
+ - Verification against source paper for factual accuracy
107
+ - Format normalization and consistency validation
108
+ - Cross-reference integrity checks between dimensions
109
+ - Fairness audit across domains and paper types (theory vs. empirical)
110
+
111
+ ## Supported Tasks
112
+
113
+ The benchmark supports the following evaluation scenarios:
114
+
115
+ 1. **Claim-Level Factuality**: Given a paper, can the agent accurately extract or recall a specific numerical value, formula, experimental detail, or procedural step?
116
+ 2. **Dimension-Level Completeness**: Can the agent achieve full recall across all four SAU dimensions for a given paper?
117
+ 3. **Cross-Dimensional Consistency**: Are claims in D4 (pipelines) consistent with D2 (formulas) and D3 (experiments)?
118
+ 4. **Hallucination Detection**: Can the agent distinguish paper-supported claims from plausible but fabricated ones?
119
+
120
+ ## Dataset Creation
121
+
122
+ ### Source Data
123
+
124
+ The 30 papers were selected from top ML venues (ICLR, ICML, NeurIPS 2025) to cover:
125
+ - **Domain diversity**: 5 domains with equal representation
126
+ - **Task diversity**: Classification, generation, reinforcement learning, theory, scientific computing
127
+ - **Quality diversity**: Papers span both regular and spotlight-level acceptances across three top-tier venues
128
+
129
+ ### Annotation Process
130
+
131
+ 1. **Initial Extraction**: AI agent extracts SAU claims from `paper.md` via a multi-agent extraction pipeline (3 specialized extraction agents targeting D1/D2/D3, with per-section parallel sub-agent spawning to avoid attention degradation)
132
+ 2. **Human Audit**: Expert reviewer verifies each claim against the source paper, correcting hallucinations, omissions, and misorderings
133
+ 3. **Iterative Refinement**: Claims undergo 4–5 review cycles (versions v1→v5) until all systematic errors are resolved
134
+ 4. **Cross-Paper Validation**: Consistency checks across papers in the same domain
135
+
136
+ ### Annotations
137
+
138
+ - **Creators**: Expert-generated (AI extraction → human verification pipeline)
139
+ - **Review Depth**: Multi-pass — each paper received 4–5 review iterations
140
+ - **Quality Metrics**: Fairness audit scores (all 30 papers grade A)
141
+
142
+ ## Considerations for Using the Data
143
+
144
+ ### Biases and Limitations
145
+
146
+ - **Venue Bias**: All papers are from 2025 top-tier conferences; older, lower-tier, or non-English venues are not represented
147
+ - **Domain Coverage**: 5 domains with 6 papers each — useful for balanced evaluation but not comprehensive
148
+ - **Single Annotator**: Claims were verified by one expert reviewer; inter-annotator agreement is not available
149
+ - **Derived Work**: SAU claims are interpretation-laden; different readers may reasonably disagree on claim boundaries
150
+
151
+ ### Intended Use
152
+
153
+ This dataset is designed for **evaluation**, not training. Use cases:
154
+ - Benchmarking LLM factuality on scientific content
155
+ - Measuring agent understanding of structured paper content
156
+ - Stress-testing retrieval-augmented generation (RAG) over academic papers
157
+
158
+ ### Out-of-Scope Uses
159
+
160
+ - Training data for production LLMs (limited size, single annotator, venue bias)
161
+ - Legal or regulatory compliance evaluation
162
+ - Automated paper review or acceptance prediction
163
+
164
+ ## Additional Information
165
+
166
+ ### License
167
+
168
+ The SAU annotations in this dataset are licensed under **CC-BY-4.0**. The underlying papers are subject to their original copyright terms as posted on arXiv and the respective conference proceedings.
169
+
170
+ ### Citation
171
+
172
+ If you use SemanticAlign-Bench in your research, please cite:
173
+
174
+ ```bibtex
175
+ @inproceedings{semanticalign_bench,
176
+ title = {SemanticAlign-Bench: Evaluating Semantic Alignment in LLM-Based Paper Reproduction},
177
+ author = {Anonymous Author(s)},
178
+ year = {2025},
179
+ note = {Benchmark dataset at \url{https://huggingface.co/datasets/kernel14/SemanticAlign-Bench}}
180
+ }
181
+ ```
182
+
183
+ ### Papers List
184
+
185
+ | Paper ID | Title | Venue |
186
+ |----------|-------|-------|
187
+ | adjoint-matching | Adjoint Matching: Fine-tuning Flow and Diffusion Models with Memoryless SOC | ICLR 2025 |
188
+ | avg-reward-pg | Global Convergence of Policy Gradient in Average Reward MDPs | ICLR 2025 |
189
+ | ca2-vdm | Ca2-VDM: Efficient Autoregressive Video Diffusion Model with Causal Generation and Cache Sharing | ICML 2025 |
190
+ | cara | Canonical Rank Adaptation: An Efficient Fine-Tuning Strategy for Vision Transformers | ICML 2025 |
191
+ | conformal-bayesian-quadrature | Conformal Prediction as Bayesian Quadrature | ICML 2025 |
192
+ | diffusion-convergence-rate | Instance-dependent Convergence Theory for Diffusion Models | ICLR 2025 |
193
+ | emergent-planning-rl | Interpreting Emergent Planning in Model-Free RL | ICLR 2025 |
194
+ | gated-attention-llm | Gated Attention for Large Language Models: Non-linearity, Sparsity, and Attention-Sink-Free | NeurIPS 2025 |
195
+ | generator-augmented-flows | Improving Consistency Models with Generator-Augmented Flows | ICML 2025 |
196
+ | hi-mar | Hierarchical Masked Autoregressive Models with Low-Resolution Token Pivots | ICML 2025 |
197
+ | lora-sb | Initialization using Update Approximation is a Silver Bullet for Extremely Efficient Low-Rank Fine-Tuning | ICLR 2025 |
198
+ | luno | Linearization Turns Neural Operators into Function-Valued Gaussian Processes | ICML 2025 |
199
+ | ma-rlhf | MA-RLHF: Reinforcement Learning from Human Feedback with Macro Actions | ICLR 2025 |
200
+ | masked-diffusion-token-ordering | Train for the Worst, Plan for the Best: Understanding Token Ordering in Masked Diffusions | ICML 2025 |
201
+ | moe-pot | Mixture-of-Experts Operator Transformer for Large-Scale PDE Pre-Training | NeurIPS 2025 |
202
+ | mrq | Towards General-Purpose Model-Free RL (MR.Q) | ICLR 2025 |
203
+ | navil | NaViL: Rethinking Scaling Properties of Native Multimodal LLMs under Data Constraints | NeurIPS 2025 |
204
+ | neural-operator-flow-matching-pde | Bridging Neural Operator and Flow Matching for a Generative PDE Foundation Model | NeurIPS 2025 |
205
+ | nfig | NFIG: Multi-Scale Autoregressive Image Generation via Frequency Ordering | NeurIPS 2025 |
206
+ | ngpt | nGPT: Normalized Transformer with Representation Learning on the Hypersphere | ICLR 2025 |
207
+ | olmoe | OLMoE: Open Mixture-of-Experts Language Models | ICLR 2025 |
208
+ | prioritized-generative-replay | Prioritized Generative Replay | ICLR 2025 |
209
+ | pyramidal-flow-matching | Pyramidal Flow Matching for Efficient Video Generative Modeling | ICLR 2025 |
210
+ | robotic-world-model | Robotic World Model: A Neural Network Simulator for Robust Policy Optimization | NeurIPS 2025 |
211
+ | sam2 | SAM 2: Segment Anything in Images and Videos | ICLR 2025 |
212
+ | sc-fno | Sensitivity-Constrained Fourier Neural Operators (SC-FNO) | ICLR 2025 |
213
+ | score | Training Language Models to Self-Correct via Reinforcement Learning | ICLR 2025 |
214
+ | universal-neural-operators | Towards Universal Neural Operators through Multiphysics Pretraining | NeurIPS 2025 |
215
+ | voting-leaderboards | Exploring and Mitigating Adversarial Manipulation of Voting-Based Leaderboards | ICML 2025 |
216
+ | wdno | Wavelet Diffusion Neural Operator (WDNO) | ICLR 2025 |