Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
json
Sub-tasks:
multi-class-classification
Languages:
English
Size:
1M - 10M
ArXiv:
License:
add information to dataset card
Browse files
README.md
CHANGED
@@ -59,3 +59,115 @@ dataset_info:
|
|
59 |
download_size: 7005370567
|
60 |
dataset_size: 6594770814
|
61 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
download_size: 7005370567
|
60 |
dataset_size: 6594770814
|
61 |
---
|
62 |
+
# Dataset Card for unarXive citation recommendation
|
63 |
+
|
64 |
+
## Dataset Description
|
65 |
+
|
66 |
+
* **Homepage:** [https://github.com/IllDepence/unarXive](https://github.com/IllDepence/unarXive)
|
67 |
+
* **Paper:** [unarXive 2022: All arXiv Publications Pre-Processed for NLP, Including Structured Full-Text and Citation Network](https://arxiv.org/abs/2303.14957)
|
68 |
+
|
69 |
+
### Dataset Summary
|
70 |
+
|
71 |
+
The unarXive citation recommendation dataset contains 2.5 Million paragraphs from computer science papers and with an annotated citation marker. The paragraphs and citation information is derived from [unarXive](https://github.com/IllDepence/unarXive).
|
72 |
+
|
73 |
+
Note that citation infromation is only given as the [OpenAlex](https://openalex.org/) ID of the cited paper. An important consideration for models is therefore if the data is used *as is*, or if additional information of the cited papers (metadata, abstracts, full-text, etc.) is used.
|
74 |
+
|
75 |
+
The dataset can be used as follows.
|
76 |
+
|
77 |
+
```
|
78 |
+
from datasets import load_dataset
|
79 |
+
|
80 |
+
citrec_data = load_dataset('saier/unarXive_citrec')
|
81 |
+
citrec_data = citrec_data.class_encode_column('label') # assign target label column
|
82 |
+
citrec_data = citrec_data.remove_columns('_id') # remove sample ID column
|
83 |
+
```
|
84 |
+
|
85 |
+
## Dataset Structure
|
86 |
+
|
87 |
+
### Data Instances
|
88 |
+
|
89 |
+
Each data instance contains the paragraph’s text as well as information on one of the contained citation markers, in the form of a label (cited document OpenAlex ID), citation marker, and citation marker offset. An example is shown below.
|
90 |
+
|
91 |
+
```
|
92 |
+
{'_id': '7c1464bb-1f0f-4b38-b1a3-85754eaf6ad1',
|
93 |
+
'label': 'https://openalex.org/W3115081393',
|
94 |
+
'marker': '[1]',
|
95 |
+
'marker_offsets': [[316, 319]],
|
96 |
+
'text': 'Data: For sentiment analysis on Hindi-English CM tweets, we used the '
|
97 |
+
'dataset provided by the organizers of Task 9 at SemEval-2020.\n'
|
98 |
+
'The training dataset consists of 14 thousand tweets.\n'
|
99 |
+
'Whereas, the validation dataset as well as the test dataset contain '
|
100 |
+
'3 thousand tweets each.\n'
|
101 |
+
'The details of the dataset are given in [1]}.\n'
|
102 |
+
'For this task, we did not use any external dataset.\n'}
|
103 |
+
```
|
104 |
+
|
105 |
+
### Data Splits
|
106 |
+
|
107 |
+
The data is split into training, development, and testing data as follows.
|
108 |
+
|
109 |
+
* Training: 2,043,192 instances
|
110 |
+
* Development: 225,084 instances
|
111 |
+
* Testing: 225,348 instances
|
112 |
+
|
113 |
+
## Dataset Creation
|
114 |
+
|
115 |
+
### Source Data
|
116 |
+
|
117 |
+
The paragraph texts are extracted from the data set [unarXive](https://github.com/IllDepence/unarXive).
|
118 |
+
|
119 |
+
#### Who are the source language producers?
|
120 |
+
|
121 |
+
The paragraphs were written by the authors of the arXiv papers. In file `license_info.jsonl` author and text licensing information can be found for all samples, An example is shown below.
|
122 |
+
|
123 |
+
```
|
124 |
+
|
125 |
+
{'authors': 'Yusuke Sekikawa, Teppei Suzuki',
|
126 |
+
'license': 'http://creativecommons.org/licenses/by/4.0/',
|
127 |
+
'paper_arxiv_id': '2011.09852',
|
128 |
+
'sample_ids': ['cc375518-347c-43d0-bfb2-f88564d66df8',
|
129 |
+
'18dc073e-a48e-488e-b34c-e5fc3cb8a4ca',
|
130 |
+
'0c2e89b3-d863-4bc2-9e11-8f6c48d867cb',
|
131 |
+
'd85e46cf-b11d-49b6-801b-089aa2dd037d',
|
132 |
+
'92915cea-17ab-4a98-aad2-417f6cdd53d2',
|
133 |
+
'e88cb422-47b7-4f69-9b0b-fbddf8140d98',
|
134 |
+
'4f5094a4-0e6e-46ae-a34d-e15ce0b9803c',
|
135 |
+
'59003494-096f-4a7c-ad65-342b74eed561',
|
136 |
+
'6a99b3f5-217e-4d3d-a770-693483ef8670']}
|
137 |
+
```
|
138 |
+
|
139 |
+
### Annotations
|
140 |
+
|
141 |
+
Citation information in unarXive is automatically determined ([see implementation](https://github.com/IllDepence/unarXive/blob/master/src/match_references_openalex.py)).
|
142 |
+
|
143 |
+
<!--
|
144 |
+
|
145 |
+
## Considerations for Using the Data
|
146 |
+
|
147 |
+
### Discussion and Biases
|
148 |
+
|
149 |
+
TODO
|
150 |
+
|
151 |
+
### Other Known Limitations
|
152 |
+
|
153 |
+
TODO
|
154 |
+
|
155 |
+
-->
|
156 |
+
|
157 |
+
## Additional Information
|
158 |
+
|
159 |
+
### Licensing information
|
160 |
+
|
161 |
+
The dataset is released under the Creative Commons Attribution-ShareAlike 4.0.
|
162 |
+
|
163 |
+
### Citation Information
|
164 |
+
|
165 |
+
```
|
166 |
+
@inproceedings{Saier2023unarXive,
|
167 |
+
author = {Saier, Tarek and Krause, Johan and F\"{a}rber, Michael},
|
168 |
+
title = {{unarXive 2022: All arXiv Publications Pre-Processed for NLP, Including Structured Full-Text and Citation Network}},
|
169 |
+
booktitle = {Proceedings of the 23rd ACM/IEEE Joint Conference on Digital Libraries},
|
170 |
+
year = {2023},
|
171 |
+
series = {JCDL '23}
|
172 |
+
}
|
173 |
+
```
|