dwright37 commited on
Commit
28b3ffd
·
1 Parent(s): 7288cf1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -1,3 +1,37 @@
1
  ---
2
  license: cc-by-nc-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
  ---
4
+
5
+ # Dataset Card for CiteWorth
6
+
7
+ ## Dataset Description
8
+
9
+ - **Repo** https://github.com/copenlu/cite-worth
10
+ - **Paper** https://aclanthology.org/2021.findings-acl.157.pdf
11
+ - **Point of Contact:** Dustin Wright ([email protected])
12
+
13
+ ### Dataset Summary
14
+
15
+ Scientific document understanding is challenging as the data is highly domain specific and diverse. However, datasets for tasks with scientific text require expensive manual annotation and tend to be small and limited to only one or a few fields. At the same time, scientific documents contain many potential training signals, such as citations, which can be used to build large labelled datasets. Given this, we present an in-depth study of cite-worthiness detection in English, where a sentence is labelled for whether or not it cites an external source. To accomplish this, we introduce CiteWorth, a large, contextualized, rigorously cleaned labelled dataset for cite-worthiness detection built from a massive corpus of extracted plain-text scientific documents. We show that CiteWorth is high-quality, challenging, and suitable for studying problems such as domain adaptation. Our best performing cite-worthiness detection model is a paragraph-level contextualized sentence labelling model based on Longformer, exhibiting a 5 F1 point improvement over SciBERT which considers only individual sentences. Finally, we demonstrate that language model fine-tuning with cite-worthiness as a secondary task leads to improved performance on downstream scientific document understanding tasks.
16
+
17
+ ## Dataset Structure
18
+
19
+ The data is structured as follows
20
+ - `paper_id`: The S2ORC paper ID where the paragraph comes from
21
+ - `section_idx`: An index into the section array in the original S2ORC data
22
+ - `file_index`: The volume in the S2ORC dataset that the paper belongs to
23
+ - `file_offset`: Byte offset to the start of the paper json in the S2ORC paper PDF file
24
+ - `mag_field_of_study`: The field of study to which a paper belongs (an array, but each paper belongs to a single field)
25
+ - `original_text`: The original text of the paragraph
26
+ - `section_title`: Title of the section to which the paragraph belongs
27
+ - `samples`: An array containing dicts of the cleaned sentences for the paragraph, in order. The fields for each dict are as follows
28
+ - `text`: The cleaned text for the sentence
29
+ - `label`: Label for the sentence, either `check-worthy` for cite-worthy sentences or `non-check-worthy` non-cite-worthy sentences
30
+ - `original_text`: The original sentence text
31
+ - `ref_ids`: List of the reference IDs in the S2ORC dataset for papers cited in this sentence
32
+ - `citation_text`: List of all citation text in this sentence
33
+
34
+ ## Dataset Creation
35
+
36
+ The data is derived from the [S2ORC dataset](https://github.com/allenai/s2orc), specifically the 20200705v1 release of the data. It is licensed under the [CC By-NC 2.0](https://creativecommons.org/licenses/by-nc/2.0/) license. For details on the dataset creation process, see section 3 of our [paper](https://aclanthology.org/2021.findings-acl.157.pdf)
37
+ .