reichenbach commited on
Commit
2c64655
1 Parent(s): 556e630

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +204 -0
README.md ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - found
4
+ language:
5
+ - en
6
+ language_creators:
7
+ - found
8
+ license:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: ScientificPapers
13
+ size_categories:
14
+ - 100K<n<1M
15
+ source_datasets:
16
+ - scientific_papers
17
+ task_categories:
18
+ - summarization
19
+ task_ids: []
20
+ paperswithcode_id: null
21
+ tags:
22
+ - abstractive-summarization
23
+ dataset_info:
24
+ - config_name: arxiv
25
+ features:
26
+ - name: article
27
+ dtype: string
28
+ - name: abstract
29
+ dtype: string
30
+ - name: section_names
31
+ dtype: string
32
+ splits:
33
+ - name: train
34
+ num_bytes: 7148341992
35
+ num_examples: 203037
36
+ - name: validation
37
+ num_bytes: 217125524
38
+ num_examples: 6436
39
+ - name: test
40
+ num_bytes: 217514961
41
+ num_examples: 6440
42
+ download_size: 4504646347
43
+ dataset_size: 7582982477
44
+ ---
45
+
46
+ # Dataset Card for "scientific_papers"
47
+
48
+ ## Table of Contents
49
+ - [Dataset Description](#dataset-description)
50
+ - [Dataset Summary](#dataset-summary)
51
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
52
+ - [Languages](#languages)
53
+ - [Dataset Structure](#dataset-structure)
54
+ - [Data Instances](#data-instances)
55
+ - [Data Fields](#data-fields)
56
+ - [Data Splits](#data-splits)
57
+ - [Dataset Creation](#dataset-creation)
58
+ - [Curation Rationale](#curation-rationale)
59
+ - [Source Data](#source-data)
60
+ - [Annotations](#annotations)
61
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
62
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
63
+ - [Social Impact of Dataset](#social-impact-of-dataset)
64
+ - [Discussion of Biases](#discussion-of-biases)
65
+ - [Other Known Limitations](#other-known-limitations)
66
+ - [Additional Information](#additional-information)
67
+ - [Dataset Curators](#dataset-curators)
68
+ - [Licensing Information](#licensing-information)
69
+ - [Citation Information](#citation-information)
70
+ - [Contributions](#contributions)
71
+
72
+ ## Dataset Description
73
+
74
+ - **Homepage:**
75
+ - **Repository:** https://github.com/armancohan/long-summarization
76
+ - **Paper:** [A Discourse-Aware Attention Model for Abstractive Summarization of Long Documents](https://arxiv.org/abs/1804.05685)
77
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
78
+
79
+
80
+ ### Dataset Summary
81
+
82
+ Scientific papers datasets contains one sets of long and structured documents.
83
+ The datasets are obtained from ArXiv repositories.
84
+
85
+
86
+ ### Supported Tasks and Leaderboards
87
+
88
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
89
+
90
+ ### Languages
91
+
92
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
93
+
94
+ ## Dataset Structure
95
+
96
+ ### Data Instances
97
+
98
+ #### arxiv
99
+
100
+ - **Size of downloaded dataset files:** 4.50 GB
101
+ - **Size of the generated dataset:** 7.58 GB
102
+ - **Total amount of disk used:** 12.09 GB
103
+
104
+ An example of 'train' looks as follows.
105
+ ```
106
+ This example was too long and was cropped:
107
+
108
+ {
109
+ "abstract": "\" we have studied the leptonic decay @xmath0 , via the decay channel @xmath1 , using a sample of tagged @xmath2 decays collected...",
110
+ "article": "\"the leptonic decays of a charged pseudoscalar meson @xmath7 are processes of the type @xmath8 , where @xmath9 , @xmath10 , or @...",
111
+ "section_names": "[sec:introduction]introduction\n[sec:detector]data and the cleo- detector\n[sec:analysys]analysis method\n[sec:conclusion]summary"
112
+ }
113
+ ```
114
+
115
+ ### Data Fields
116
+
117
+ The data fields are the same among all splits.
118
+
119
+ #### arxiv
120
+ - `article`: a `string` feature.
121
+ - `abstract`: a `string` feature.
122
+ - `section_names`: a `string` feature.
123
+ - `embeddings`: a `float` 768 dimensional vector
124
+
125
+ ### Data Splits
126
+
127
+ | name |train |validation|test|
128
+ |------|-----:|---------:|---:|
129
+ |arxiv |203037| 6436|6440|
130
+
131
+ ## Dataset Creation
132
+
133
+ ### Curation Rationale
134
+
135
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
136
+
137
+ ### Source Data
138
+
139
+ #### Initial Data Collection and Normalization
140
+
141
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
142
+
143
+ #### Who are the source language producers?
144
+
145
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
146
+
147
+ ### Annotations
148
+
149
+ #### Annotation process
150
+
151
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
152
+
153
+ #### Who are the annotators?
154
+
155
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
156
+
157
+ ### Personal and Sensitive Information
158
+
159
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
160
+
161
+ ## Considerations for Using the Data
162
+
163
+ ### Social Impact of Dataset
164
+
165
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
166
+
167
+ ### Discussion of Biases
168
+
169
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
170
+
171
+ ### Other Known Limitations
172
+
173
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
174
+
175
+ ## Additional Information
176
+
177
+ ### Dataset Curators
178
+
179
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
180
+
181
+ ### Licensing Information
182
+
183
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
184
+
185
+ ### Citation Information
186
+
187
+ ```
188
+ @article{Cohan_2018,
189
+ title={A Discourse-Aware Attention Model for Abstractive Summarization of
190
+ Long Documents},
191
+ url={http://dx.doi.org/10.18653/v1/n18-2097},
192
+ DOI={10.18653/v1/n18-2097},
193
+ journal={Proceedings of the 2018 Conference of the North American Chapter of
194
+ the Association for Computational Linguistics: Human Language
195
+ Technologies, Volume 2 (Short Papers)},
196
+ publisher={Association for Computational Linguistics},
197
+ author={Cohan, Arman and Dernoncourt, Franck and Kim, Doo Soon and Bui, Trung and Kim, Seokhwan and Chang, Walter and Goharian, Nazli},
198
+ year={2018}
199
+ }
200
+ ```
201
+
202
+ ### Contributions
203
+
204
+ Thanks to [@thomwolf](https://github.com/thomwolf), [@jplu](https://github.com/jplu), [@lewtun](https://github.com/lewtun), [@patrickvonplaten](https://github.com/patrickvonplaten) for adding this dataset.