Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,51 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-sa-4.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-sa-4.0
|
3 |
+
---
|
4 |
+
|
5 |
+
This dataset accompanies our ACL 2025 paper: [Internal and External Impacts of Natural Language Processing Papers](https://arxiv.org/abs/2505.16061).
|
6 |
+
|
7 |
+
We present a comprehensive dataset for analyzing both the internal (academic) and external (public) impacts of NLP papers published in top-tier conferences — ACL, EMNLP, and NAACL — between 1979 and 2024. The dataset supports a wide range of scientometric studies, including topic-level impact evaluation across patents, media, policy, and code repositories.
|
8 |
+
|
9 |
+
## Data Sources
|
10 |
+
Our dataset integrates signals from several open and restricted resources:
|
11 |
+
|
12 |
+
- [ACL Anthology](https://github.com/acl-org/acl-anthology): NLP papers
|
13 |
+
|
14 |
+
- [OpenAlex](https://docs.openalex.org/download-all-data/download-to-your-machine): Citation counts
|
15 |
+
|
16 |
+
- [Reliance on Science](https://zenodo.org/records/11461587): Patent-to-paper links.
|
17 |
+
|
18 |
+
- [Papers with Code](https://production-media.paperswithcode.com/about/links-between-papers-and-code.json.gz) + GitHub API: Linking NLP papers to GitHub repositories, including stars and forks.
|
19 |
+
|
20 |
+
⚠️ **Not publicly included**:
|
21 |
+
|
22 |
+
Altmetric (media-to-paper links) and Overton (policy-document-to-paper links) are used in our analysis but are not released here due to data access restrictions. Approval from Altmetric and Overton needed to access these signals. Please refer to our paper for more details.
|
23 |
+
|
24 |
+
## Dataset Format
|
25 |
+
Each record corresponds to one NLP paper and includes the following fields:
|
26 |
+
|
27 |
+
| Field Name | Description |
|
28 |
+
|--------------------|-----------------------------------------------------------------------------|
|
29 |
+
| `title` | Title of the paper |
|
30 |
+
| `abstract` | Abstract of the paper |
|
31 |
+
| `doi` | Digital Object Identifier(s) |
|
32 |
+
| `venue` | Conference venue (ACL, EMNLP, or NAACL) |
|
33 |
+
| `year` | Year of publication |
|
34 |
+
| `oaid` | OpenAlex ID(s) |
|
35 |
+
| `label` | Assigned research topic (based on ACL 2025 Call for Papers; predicted via GPT-4o) |
|
36 |
+
| `paper_citation` | Citation count (OpenAlex) |
|
37 |
+
| `patent_citation` | Number of times cited in USPTO patents (Reliance on Science) |
|
38 |
+
| `github_repo` | List of associated GitHub repository URLs (Papers with Code) |
|
39 |
+
| `github_star` | Total number of GitHub stars for associated repositories |
|
40 |
+
| `github_fork` | Total number of GitHub forks for associated repositories |
|
41 |
+
|
42 |
+
## Citation
|
43 |
+
If you find this dataset useful, please cite the following paper:
|
44 |
+
```
|
45 |
+
@article{zhang2025internal,
|
46 |
+
title={Internal and External Impacts of Natural Language Processing Papers},
|
47 |
+
author={Zhang, Yu},
|
48 |
+
journal={arXiv preprint arXiv:2505.16061},
|
49 |
+
year={2025}
|
50 |
+
}
|
51 |
+
```
|