Hamyrappy commited on
Commit
4dab887
·
verified ·
1 Parent(s): 52a5494

Initial release: ACC atomic contribution claims

Browse files
Files changed (5) hide show
  1. README.md +145 -0
  2. claims.parquet +3 -0
  3. cluster_summary.parquet +3 -0
  4. clusters.parquet +3 -0
  5. papers.parquet +3 -0
README.md ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: cc-by-4.0
5
+ pretty_name: EMNLP 2020-2025 Atomic Contribution Claims (ACC) with Drift Clusters
6
+ tags:
7
+ - synthetic
8
+ - scientometrics
9
+ - science-of-science
10
+ - acl-anthology
11
+ - emnlp
12
+ - atomic-claims
13
+ - claim-extraction
14
+ - clustering
15
+ - scientific-text
16
+ - nlp
17
+ annotations_creators:
18
+ - machine-generated
19
+ language_creators:
20
+ - machine-generated
21
+ multilinguality:
22
+ - monolingual
23
+ size_categories:
24
+ - 10K<n<100K
25
+ source_datasets:
26
+ - original
27
+ task_categories:
28
+ - feature-extraction
29
+ - text-classification
30
+ configs:
31
+ - config_name: claims
32
+ data_files:
33
+ - split: train
34
+ path: claims.parquet
35
+ default: true
36
+ - config_name: papers
37
+ data_files:
38
+ - split: train
39
+ path: papers.parquet
40
+ - config_name: clusters
41
+ data_files:
42
+ - split: train
43
+ path: clusters.parquet
44
+ - config_name: cluster_summary
45
+ data_files:
46
+ - split: train
47
+ path: cluster_summary.parquet
48
+ ---
49
+
50
+ # EMNLP 2020–2025 Atomic Contribution Claims (ACC), with drift clusters
51
+
52
+ **18,293 atomic contribution claims extracted from the abstracts of the full EMNLP main track 2020–2025, plus the canonical 80-cluster drift clustering and per-cluster drift statistics used in the Drift Inspector paper.**
53
+
54
+ An *atomic contribution claim* (ACC) is a single self-contained sentence stating one concrete contribution of a paper: **atomic** (one contribution-bearing proposition), **decontextualized** (pronouns resolved, meta-language removed), and **falsifiable** (a verifiable assertion).
55
+
56
+ > *"TheoremLlama uses curriculum learning and block training techniques to train large language models for formal theorem proving."* — from [2024.emnlp-main.667](https://aclanthology.org/2024.emnlp-main.667/)
57
+
58
+ This is the single-venue case-study corpus of the **Drift Inspector** project — the corpus every number in the paper's evaluation is computed on. For breadth, see the full-anthology release (346k claims, 423 venues):
59
+
60
+ - 🤗 **Full-anthology dataset:** [acl-anthology-atomic-claims](https://huggingface.co/datasets/Hamyrappy/acl-anthology-atomic-claims)
61
+ - 🔭 **Live demo (extended, 6 *ACL venues):** https://hamyrappy.github.io/drift-inspector-acl/
62
+ - 📄 **This corpus explored interactively:** https://hamyrappy.github.io/drift-inspector-emnlp/
63
+ - 🛠 **Code (extraction + clustering + inspector):** https://github.com/Hamyrappy/drift-inspector
64
+
65
+ ## What's inside
66
+
67
+ | Config | Rows | Contents |
68
+ |---|---|---|
69
+ | `claims` (default) | 18,293 | one row per extracted claim (4,937 papers yielded claims) |
70
+ | `papers` | 6,517 | all EMNLP main-track papers 2020–2025, **with abstracts** |
71
+ | `clusters` | 16,576 | the paper's canonical clustering: claim → cluster, on a year-balanced subsample |
72
+ | `cluster_summary` | 81 | per-cluster names, sizes, per-year document frequency, drift statistics |
73
+
74
+ ### `claims` fields
75
+
76
+ | Column | Type | Description |
77
+ |---|---|---|
78
+ | `claim_id` | string | unique id (`clm_` + hash) |
79
+ | `paper_id` | string | ACL Anthology id, e.g. `2021.emnlp-main.602` |
80
+ | `year` | int32 | 2020–2025 |
81
+ | `atomic_claim` | string | the claim text |
82
+ | `claim_index` | int32 | position within the paper's extraction (0-based) |
83
+ | `extractor_model` | string | `qwen/qwen3-235b-a22b-thinking-2507` |
84
+ | `prompt_hash` | string | `f9a9b434c72c` — exact prompt ships with the code |
85
+ | `run_id`, `created_at` | string | extraction provenance |
86
+
87
+ ### `papers` fields
88
+
89
+ `paper_id`, `year`, `title`, `venue` (`EMNLP`), `track` (`main`), `url`, `authors`, `author_ids`, `n_authors`, **`abstract`** (all abstracts are 2020+, hence CC BY 4.0).
90
+
91
+ ### `clusters` fields — the canonical drift clustering
92
+
93
+ The paper's analysis runs on a year-balanced subsample: 748 papers per year (seed 42) → 4,488 papers, 16,576 claims. Claims were embedded with SPECTER2, reduced with UMAP, clustered with HDBSCAN (BERTopic-style, but the input unit is the claim, not the abstract) → **80 clusters + noise** (36% of claims; rising 31% → 42% across years as the newest contributions have had the least time to consolidate).
94
+
95
+ | Column | Type | Description |
96
+ |---|---|---|
97
+ | `claim_id` | string | joins to `claims` |
98
+ | `paper_id`, `year`, `atomic_claim` | | copied for standalone use |
99
+ | `cluster` | int32 | cluster id; `-1` = noise |
100
+ | `cluster_descriptor` | string | extractive c-TF-IDF descriptor, e.g. `attention, parameters, transformer` |
101
+ | `cluster_short_name` | string | LLM-generated, author-reviewed name, e.g. `Transformers & Efficiency` |
102
+ | `cluster_full_name` | string | longer readable name |
103
+
104
+ ### `cluster_summary` fields
105
+
106
+ One row per cluster (incl. noise): `cluster`, `cluster_short_name`, `cluster_full_name`, `cluster_descriptor`, `cluster_description` (one-paragraph scope note), `tags`, `n_claims`, `n_papers`, `df_pct_2020` … `df_pct_2025` (share of that year's 748 papers with ≥1 claim in the cluster, %), `drift_log2_2025_2020` (log2 ratio of 2025 vs 2020 share, ε = 0.1pp — the Drift Inspector's drift color).
107
+
108
+ Example drift readings: *Syntactic Parsing* 5.08% → 0.13% of papers; *Math & Logic Reasoning* 0.94% ��� 7.62%.
109
+
110
+ ```python
111
+ from datasets import load_dataset
112
+ clusters = load_dataset("Hamyrappy/emnlp-2020-2025-atomic-claims", "clusters", split="train")
113
+ ```
114
+
115
+ ## Dataset creation & validation
116
+
117
+ 1. **Corpus.** Full EMNLP main track 2020–2025 from the ACL Anthology (751 / 847 / 826 / 1,047 / 1,237 / 1,809 papers per year).
118
+ 2. **Extraction.** `qwen3-235b-a22b-thinking-2507` (via OpenRouter, temperature 0.2), few-shot prompt enforcing atomicity / decontextualization / falsifiability, excluding background, motivation and raw metric claims. Abstracts with no extractable contribution are excluded (e.g. 3 of 751 in 2020).
119
+ 3. **Human validation.** Three annotators labeled 180 items (136 stratified claims + 44 curated negative controls) as Good/Bad/Unsure. Inter-annotator agreement Fleiss' κ = 0.844 (dropping Unsure; 0.76/0.73 under stricter conventions); 97.8/91.8/90.5% Good on sampled claims; 44/44 negatives flagged by 2-of-3 majority. The full protocol and annotations ship with the code repository.
120
+ 4. **LLM judge.** An independent judge from a different vendor (Gemini vs. Qwen), blind to human labels, matches the human majority with 94.5% accuracy (κ = 0.863) and flags 43/44 negatives.
121
+ 5. **Clustering.** SPECTER2 → UMAP → HDBSCAN on the balanced subsample; 80 clusters, c-TF-IDF descriptors, LLM-generated author-reviewed names. Headline drift directions are stable under bootstrap resampling, eight alternative encoders, and a lexical representation (see paper).
122
+
123
+ ## Limitations
124
+
125
+ - Claims are LLM-extracted; residual errors (unsupported details, background leakage) exist — the validation above quantifies, not eliminates, them.
126
+ - Abstract-level only: body-only contributions are invisible.
127
+ - Cluster *boundaries* and names depend on UMAP/HDBSCAN hyperparameters and the encoder; headline drift directions are robustness-checked, per-cluster numbers are descriptive.
128
+ - The clustering covers the balanced subsample (16,576 of 18,293 claims); the remaining claims are extracted but unclustered.
129
+
130
+ ## Licensing
131
+
132
+ Released under **CC BY 4.0**. Claim texts are LLM-generated derived statements; source abstracts (included in `papers`) are ACL Anthology materials published 2020–2025, licensed CC BY 4.0. Please attribute the ACL Anthology and cite the underlying papers where appropriate.
133
+
134
+ ## Citation
135
+
136
+ The system paper introducing ACCs and Drift Inspector is under review; until then, please cite the dataset directly:
137
+
138
+ ```bibtex
139
+ @misc{acc-emnlp-2026,
140
+ title = {EMNLP 2020--2025 Atomic Contribution Claims (ACC) with Drift Clusters},
141
+ author = {Karimov, Vsevolod and Ostarkov, Stepan and Poroshina, Anastasia and Frolov, Anatoly and Panchenko, Alexander},
142
+ year = {2026},
143
+ howpublished = {\url{https://huggingface.co/datasets/Hamyrappy/emnlp-2020-2025-atomic-claims}}
144
+ }
145
+ ```
claims.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa56a6c2aeddbe0911a4214b4e8b7cba82c5da1c12190bbafd7e22d37a770bb1
3
+ size 1526944
cluster_summary.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0bb64b949e2496b5b2b02c367fbd68e23c2fcdf449a6f9b9d8992047fe0db6f
3
+ size 32149
clusters.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:205c7f867301466f0619e6bd7a32730d3629fc77090201031829e51c048f65de
3
+ size 1443218
papers.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4219147b113a328a696f20e0548758787ed1e5410dc2dd7d4ff3342a6d1b6c26
3
+ size 5013084