jpwahle commited on
Commit
679dae3
1 Parent(s): faef5a9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -26
README.md CHANGED
@@ -25,7 +25,7 @@ task_categories:
25
  - other
26
  task_ids: []
27
  ---
28
- # Dataset Card for [Dataset Name]
29
  ## Table of Contents
30
  - [Table of Contents](#table-of-contents)
31
  - [Dataset Description](#dataset-description)
@@ -53,50 +53,115 @@ task_ids: []
53
  ## Dataset Description
54
  - **Homepage:**
55
  - **Repository:**
 
56
  - **Paper:**
 
57
  - **Leaderboard:**
58
  - **Point of Contact:**
59
  ### Dataset Summary
60
- [More Information Needed]
61
  ### Supported Tasks and Leaderboards
62
  [More Information Needed]
63
  ### Languages
64
- [More Information Needed]
65
  ## Dataset Structure
66
  ### Data Instances
67
- [More Information Needed]
68
  ### Data Fields
69
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  ### Data Splits
71
- [More Information Needed]
72
  ## Dataset Creation
73
  ### Curation Rationale
74
  [More Information Needed]
75
  ### Source Data
76
  #### Initial Data Collection and Normalization
77
- [More Information Needed]
78
  #### Who are the source language producers?
79
  [More Information Needed]
80
- ### Annotations
81
- #### Annotation process
82
- [More Information Needed]
83
- #### Who are the annotators?
84
- [More Information Needed]
85
- ### Personal and Sensitive Information
86
- [More Information Needed]
87
- ## Considerations for Using the Data
88
- ### Social Impact of Dataset
89
- [More Information Needed]
90
- ### Discussion of Biases
91
- [More Information Needed]
92
- ### Other Known Limitations
93
- [More Information Needed]
94
  ## Additional Information
95
  ### Dataset Curators
96
- [More Information Needed]
97
  ### Licensing Information
98
- [More Information Needed]
99
  ### Citation Information
100
- [More Information Needed]
101
- ### Contributions
102
- Thanks to [@github-username](https://github.com/<github-username>) for adding this dataset.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  - other
26
  task_ids: []
27
  ---
28
+ # Dataset Card for DBLP Discovery Dataset (D3)
29
  ## Table of Contents
30
  - [Table of Contents](#table-of-contents)
31
  - [Dataset Description](#dataset-description)
 
53
  ## Dataset Description
54
  - **Homepage:**
55
  - **Repository:**
56
+ https://github.com/jpwahle/lrec22-d3-dataset
57
  - **Paper:**
58
+ https://aclanthology.org/2022.lrec-1.283/
59
  - **Leaderboard:**
60
  - **Point of Contact:**
61
  ### Dataset Summary
62
+ DBLP is the largest open-access repository of scientific articles on computer science and provides metadata associated with publications, authors, and venues. We retrieved more than 6 million publications from DBLP and extracted pertinent metadata (e.g., abstracts, author affiliations, citations) from the publication texts to create the DBLP Discovery Dataset (D3). D3 can be used to identify trends in research activity, productivity, focus, bias, accessibility, and impact of computer science research. We present an initial analysis focused on the volume of computer science research (e.g., number of papers, authors, research activity), trends in topics of interest, and citation patterns. Our findings show that computer science is a growing research field (15% annually), with an active and collaborative researcher community. While papers in recent years present more bibliographical entries in comparison to previous decades, the average number of citations has been declining. Investigating papers’ abstracts reveals that recent topic trends are clearly reflected in D3. Finally, we list further applications of D3 and pose supplemental research questions. The D3 dataset, our findings, and source code are publicly available for research purposes.
63
  ### Supported Tasks and Leaderboards
64
  [More Information Needed]
65
  ### Languages
66
+ English
67
  ## Dataset Structure
68
  ### Data Instances
69
+ [See here](https://huggingface.co/datasets/jpwahle/dblp-discovery-dataset/viewer/jpwahle--dblp-discovery-dataset/papers)
70
  ### Data Fields
71
+ #### Papers
72
+ | Feature | Description |
73
+ | --- | --- |
74
+ | `corpusid` | The unique identifier of the paper. |
75
+ | `externalids` | The same paper in other repositories (e.g., DOI, ACL). |
76
+ | `title` | The title of the paper. |
77
+ | `authors` | The authors of the paper with their `authorid` and `name`. |
78
+ | `venue` | The venue of the paper. |
79
+ | `year` | The year of the paper publication. |
80
+ | `publicationdate` | A more precise publication date of the paper. |
81
+ | `abstract` | The abstract of the paper. |
82
+ | `outgoingcitations` | The number of references of the paper. |
83
+ | `ingoingcitations` | The number of citations of the paper. |
84
+ | `isopenaccess` | Whether the paper is open access. |
85
+ | `influentialcitationcount` | The number of influential citations of the paper according to SemanticScholar. |
86
+ | `s2fieldsofstudy` | The fields of study of the paper according to SemanticScholar. |
87
+ | `publicationtypes` | The publication types of the paper. |
88
+ | `journal` | The journal of the paper. |
89
+ | `updated` | The last time the paper was updated. |
90
+ | `s2url` | A url to the paper in SemanticScholar. |
91
+
92
+ #### Authors
93
+ | Feature | Description |
94
+ | --- | --- |
95
+ | `authorid` | The unique identifier of the author. |
96
+ | `externalids` | The same author in other repositories (e.g., ACL, PubMed). This can include `ORCID` |
97
+ | `name` | The name of the author. |
98
+ | `affiliations` | The affiliations of the author. |
99
+ | `homepage` | The homepage of the author. |
100
+ | `papercount` | The number of papers the author has written. |
101
+ | `citationcount` | The number of citations the author has received. |
102
+ | `hindex` | The h-index of the author. |
103
+ | `updated` | The last time the author was updated. |
104
+ | `email` | The email of the author. |
105
+ | `s2url` | A url to the author in SemanticScholar. |
106
  ### Data Splits
107
+ `papers` and `authors`
108
  ## Dataset Creation
109
  ### Curation Rationale
110
  [More Information Needed]
111
  ### Source Data
112
  #### Initial Data Collection and Normalization
113
+ DBLP and from v2.0 SemanticScholar
114
  #### Who are the source language producers?
115
  [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  ## Additional Information
117
  ### Dataset Curators
118
+ [Jan Philip Wahle](https://jpwahle.com/)
119
  ### Licensing Information
120
+ The DBLP Discovery Dataset is released under the CC BY-NC 4.0. By using this corpus, you are agreeing to its usage terms.
121
  ### Citation Information
122
+ If you use the dataset in any way, please cite:
123
+ ```bib
124
+ @inproceedings{Wahle2022c,
125
+ title = {D3: A Massive Dataset of Scholarly Metadata for Analyzing the State of Computer Science Research},
126
+ author = {Wahle, Jan Philip and Ruas, Terry and Mohammad, Saif M. and Gipp, Bela},
127
+ year = {2022},
128
+ month = {July},
129
+ booktitle = {Proceedings of The 13th Language Resources and Evaluation Conference},
130
+ publisher = {European Language Resources Association},
131
+ address = {Marseille, France},
132
+ doi = {},
133
+ }
134
+ ```
135
+ Also make sure to cite the following papers if you use SemanticScholar data:
136
+ ```bib
137
+ @inproceedings{ammar-etal-2018-construction,
138
+ title = "Construction of the Literature Graph in Semantic Scholar",
139
+ author = "Ammar, Waleed and
140
+ Groeneveld, Dirk and
141
+ Bhagavatula, Chandra and
142
+ Beltagy, Iz",
143
+ booktitle = "Proceedings of the 2018 Conference of the North {A}merican Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 3 (Industry Papers)",
144
+ month = jun,
145
+ year = "2018",
146
+ address = "New Orleans - Louisiana",
147
+ publisher = "Association for Computational Linguistics",
148
+ url = "https://aclanthology.org/N18-3011",
149
+ doi = "10.18653/v1/N18-3011",
150
+ pages = "84--91",
151
+ }
152
+ ```
153
+ ```bib
154
+ @inproceedings{lo-wang-2020-s2orc,
155
+ title = "{S}2{ORC}: The Semantic Scholar Open Research Corpus",
156
+ author = "Lo, Kyle and Wang, Lucy Lu and Neumann, Mark and Kinney, Rodney and Weld, Daniel",
157
+ booktitle = "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics",
158
+ month = jul,
159
+ year = "2020",
160
+ address = "Online",
161
+ publisher = "Association for Computational Linguistics",
162
+ url = "https://www.aclweb.org/anthology/2020.acl-main.447",
163
+ doi = "10.18653/v1/2020.acl-main.447",
164
+ pages = "4969--4983"
165
+ }
166
+ ```### Contributions
167
+ Thanks to [@jpwahle](https://github.com/jpwahle) for adding this dataset.