griffin commited on
Commit
543230b
1 Parent(s): f587828

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +152 -0
README.md ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - summarization
4
+ language:
5
+ - en
6
+ tags:
7
+ - chemistry
8
+ - biology
9
+ - medical
10
+ pretty_name: Generating Abstracts of Academic Chemistry Papers
11
+ size_categories:
12
+ - 100K<n<1M
13
+ ---
14
+ # Dataset Card for ChemSum
15
+
16
+ ## ChemSum Description
17
+
18
+ <!---- **Homepage:**
19
+ - **Leaderboard:**
20
+ ----->
21
+ - **Paper:** [What are the Desired Characteristics of Calibration Sets? Identifying Correlates on Long Form Scientific Summarization ](https://openreview.net/forum?id=bIC0BfWzCs)
22
+ - **Journal:** ACL 2023
23
+ - **Point of Contact:** [email protected]
24
+ - **Repository:** https://github.com/griff4692/calibrating-summaries
25
+
26
+ ### ChemSum Summary
27
+
28
+ We introduce a dataset with a pure chemistry focus by compiling a list of chemistry academic journals with Open-Access articles. For each journal, we downloaded full-text article PDFs from the Open-Access portion of the journal using available APIs, or scraping this content using [Selenium Chrome WebDriver](https://www.selenium.dev/documentation/webdriver/).
29
+ Each PDF was processed with Grobid via a locally installed [client](https://pypi.org/project/grobid-client-python/) to extract free-text paragraphs with sections.
30
+
31
+ The table below shows the journals from which Open Access articles were sourced, as well as the number of papers processed.
32
+
33
+ For all journals, we filtered for papers with the provided topic of Chemistry when papers from other disciplines were also available (e.g. PubMed).
34
+
35
+
36
+ | Source | # of Articles |
37
+ | ----------- | ----------- |
38
+ | Beilstein | 1,829 |
39
+ | Chem Cell | 546 |
40
+ | ChemRxiv | 12,231 |
41
+ | Chemistry Open | 398 |
42
+ | Nature Communications Chemistry | 572 |
43
+ | PubMed Author Manuscript | 57,680 |
44
+ | PubMed Open Access | 29,540 |
45
+ | Royal Society of Chemistry (RSC) | 9,334 |
46
+ | Scientific Reports - Nature | 6,826 |
47
+
48
+ <!---
49
+ ### Supported Tasks and Leaderboards
50
+
51
+ [More Information Needed]
52
+ --->
53
+
54
+ ### Languages
55
+
56
+ English
57
+
58
+ ## Dataset Structure
59
+
60
+ <!--- ### Data Instances --->
61
+
62
+ ### Data Fields
63
+
64
+
65
+ | Column | Description |
66
+ | ----------- | ----------- |
67
+ | `uuid` | Unique Identifier for the Example |
68
+ | `title` | Title of the Article |
69
+ | `article_source` | Open Source Journal (see above for list) |
70
+ | `abstract` | Abstract (summary reference) |
71
+ | `sections` | Full-text sections from the main body of paper (<!> indicates section boundaries)|
72
+ | `headers` | Corresponding section headers for `sections` field (<!> delimited) |
73
+ | `source_toks` | Aggregate number of tokens across `sections` |
74
+ | `target_toks` | Number of tokens in the `abstract` |
75
+ | `compression` | Ratio of `source_toks` to `target_toks` |
76
+
77
+ Please refer to `load_chemistry()` in https://github.com/griff4692/calibrating-summaries/blob/master/preprocess/preprocess.py for pre-processing as a summarization dataset. The inputs are `sections` and `headers` and the targets is the `abstract`.
78
+
79
+
80
+ ### Data Splits
81
+
82
+ | Split | Count |
83
+ | ----------- | ----------- |
84
+ | `train` | 115,956 |
85
+ | `validation` | 1,000 |
86
+ | `test` | 2,000 |
87
+
88
+
89
+ ### Citation Information
90
+
91
+ [More Information Needed]
92
+
93
+ <!---
94
+
95
+ ## Dataset Creation
96
+
97
+ ### Curation Rationale
98
+
99
+ [More Information Needed]
100
+
101
+ ### Source Data
102
+
103
+ #### Initial Data Collection and Normalization
104
+
105
+ [More Information Needed]
106
+
107
+ #### Who are the source language producers?
108
+
109
+ [More Information Needed]
110
+
111
+ ### Annotations
112
+
113
+ #### Annotation process
114
+
115
+ [More Information Needed]
116
+
117
+ #### Who are the annotators?
118
+
119
+ [More Information Needed]
120
+
121
+ ### Personal and Sensitive Information
122
+
123
+ [More Information Needed]
124
+
125
+ ## Considerations for Using the Data
126
+
127
+ ### Social Impact of Dataset
128
+
129
+ [More Information Needed]
130
+
131
+ ### Discussion of Biases
132
+
133
+ [More Information Needed]
134
+
135
+ ### Other Known Limitations
136
+
137
+ [More Information Needed]
138
+
139
+ ## Additional Information
140
+
141
+ ### Dataset Curators
142
+
143
+ [More Information Needed]
144
+
145
+ ### Licensing Information
146
+
147
+ [More Information Needed]
148
+
149
+ ### Contributions
150
+
151
+ [More Information Needed]
152
+ --->