pepa commited on
Commit
64aeb00
1 Parent(s): d544699

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +131 -3
README.md CHANGED
@@ -1,3 +1,131 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dataset Card for sufficient_facts
2
+
3
+ ## Table of Contents
4
+ - [Table of Contents](#table-of-contents)
5
+ - [Dataset Description](#dataset-description)
6
+ - [Dataset Summary](#dataset-summary)
7
+ - [Languages](#languages)
8
+ - [Dataset Structure](#dataset-structure)
9
+ - [Data Instances](#data-instances)
10
+ - [Data Fields](#data-fields)
11
+ - [Data Splits](#data-splits)
12
+ - [Dataset Creation](#dataset-creation)
13
+ - [Curation Rationale](#curation-rationale)
14
+ - [Source Data](#source-data)
15
+ - [Annotations](#annotations)
16
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
17
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
18
+ - [Social Impact of Dataset](#social-impact-of-dataset)
19
+ - [Discussion of Biases](#discussion-of-biases)
20
+ - [Other Known Limitations](#other-known-limitations)
21
+ - [Additional Information](#additional-information)
22
+ - [Dataset Curators](#dataset-curators)
23
+ - [Licensing Information](#licensing-information)
24
+ - [Citation Information](#citation-information)
25
+ - [Contributions](#contributions)
26
+
27
+ ## Dataset Description
28
+
29
+ - **Homepage:** https://github.com/copenlu/sufficient_facts
30
+ - **Repository:** https://github.com/copenlu/sufficient_facts
31
+ - **Paper:** Will be uploaded soon...
32
+ - **Leaderboard:**
33
+ - **Point of Contact:** https://apepa.github.io/
34
+
35
+ ### Dataset Summary
36
+
37
+ This is the dataset SufficientFacts, introduced in the paper "Fact Checking with Insufficient Evidence", accepted at the TACL journal in 2022.
38
+
39
+ Automating the fact checking (FC) process relies on information obtained from external sources. In this work, we posit that it is crucial for FC models to make veracity predictions only when there is sufficient evidence and otherwise indicate when it is not enough. To this end, we are the first to study what information FC models consider sufficient by introducing a novel task and advancing it with three main contributions. First, we conduct an in-depth empirical analysis of the task with a new fluency-preserving method for omitting information from the evidence at the constituent and sentence level. We identify when models consider the remaining evidence (in)sufficient for FC, based on three trained models with different Transformer architectures and three FC datasets. Second, we ask annotators whether the omitted evidence was important for FC, resulting in a novel diagnostic dataset, **SufficientFacts**, for FC with omitted evidence. We find that models are least successful in detecting missing evidence when adverbial modifiers are omitted (21% accuracy), whereas it is easiest for omitted date modifiers (63% accuracy). Finally, we propose a novel data augmentation strategy for contrastive self-learning of missing evidence by employing the proposed omission method combined with tri-training. It improves performance for Evidence Sufficiency Prediction by up to 17.8 F1 score, which in turn improves FC performance by up to 2.6 F1 score.
40
+
41
+
42
+ ### Languages
43
+
44
+ English
45
+
46
+ ## Dataset Structure
47
+
48
+ The dataset consists of three files, each for one of the datasets -- FEVER, HoVer, and VitaminC.
49
+ Each file consists of json lines of the format:
50
+
51
+ ```json
52
+ {
53
+ "claim": "Unison (Celine Dion album) was originally released by Atlantic Records.",
54
+ "evidence": [
55
+ [
56
+ "Unison (Celine Dion album)",
57
+ "The album was originally released on 2 April 1990 ."
58
+ ]
59
+ ],
60
+ "label_before": "REFUTES",
61
+ "label_after": "NOT ENOUGH",
62
+ "agreement": "agree_ei",
63
+ "type": "PP",
64
+ "removed": ["by Columbia Records"],
65
+ "text_orig": "[[Unison (Celine Dion album)]] The album was originally released on 2 April 1990 <span style=\"color:red;\">by Columbia Records</span> ."
66
+ }
67
+ ```
68
+
69
+ ### Data Instances
70
+
71
+ * FEVER: 600 consituent-level, 400 sentence-level;
72
+ * HoVer - 600 consituent-level, 400 sentence-level;
73
+ * VitaminC - 600 consituent-level.
74
+
75
+ ### Data Fields
76
+
77
+ * `claim` - the claim that is being verified
78
+ * `evidence` - the augmented evidence for the claim, i.e. the evidence with some removed information
79
+ * `label_before` - the original label for the claim-evidence pair, before information was removed from the evidence
80
+ * `label_after` - the label for the augmented claim-evidence pair, after information was removed from the evidence, as annotated by crowd-source workers
81
+ * `type` - type of the information removed from the evidence. The types are fine-grained and their mapping to the general types -- 7 constituent and 1 sentence type can be found in [types.json](types.json) file.
82
+ * `removed` - the text of the removed information from the evidence
83
+ * `text_orig` - the original text of the evidence, as presented to crowd-source workers, the text of the removed information is inside `<span style=\"color:red;\"></span>` tags.
84
+
85
+ ### Data Splits
86
+
87
+ | name |test_fever|test_hover|test_vitaminc|
88
+ |----------|-------:|-----:|-------:|
89
+ |test| 1000| 1000| 600|
90
+
91
+
92
+ Augmented from the test splits of the corresponding datasets.
93
+
94
+ ### Annotations
95
+
96
+ #### Annotation process
97
+
98
+ The workers were provided with the following task description:
99
+
100
+ For each evidence text, some facts have been removed (marked in <span style="color:red;">red</span>).
101
+ You should annotate whether, <b>given the remaining facts in the evidence text, the evidence is still enough for verifying the claim.</b> <br></br>
102
+ <ul>
103
+ <li>You should select <i><b>'ENOUGH -- IRRELEVANT'</b></i>, if the <b>remaining information is still <i>enough</i></b> for verifying the claim because the <b>removed information is irrelevant</b> for identifying the evidence as SUPPORTS or REFUTES. See examples 1 and 2.</li>
104
+ <li>You should select <i><b>'ENOUGH -- REPEATED'</b></i>, if the <b>remaining information is still <i>enough</i></b> for verifying the claim because the <b>removed information is relevant but is also present (repeated) in the remaining (not red) text.</b> See example 3.</li>
105
+ <li>You should select <i><b>'NOT ENOUGH'</b></i> -- when <b>1) the removed information is <i>relevant</i></b> for verifying the claim <b> AND 2) it is <i>not present (repeated)</i> in the remaining text.</b> See examples 4, 5, and 6.</li>
106
+ <!--<li>You should select <i><b>'CHANGED INFO'</b></i> in the rare cases when the remaining evidence has <b>changed the support for the claim</b></li>-->
107
+ </ul>
108
+
109
+ <b>Note: You should not incorporate your own knowledge or beliefs! You should rely only on the evidence provided for the claim.</b>
110
+
111
+ The annotators were then given example instance annotations.
112
+ Finally, annotators were asked to complete a qualification test in order to be allowed to annotate instances for the task.
113
+ The resulting inter-annotator agreement for SufficientFacts is 0.81 Fleiss'k from three annotators.
114
+
115
+ #### Who are the annotators?
116
+
117
+ The annotations were performed by workers at Amazon Mechanical Turk.
118
+
119
+ ## Additional Information
120
+
121
+ ### Licensing Information
122
+
123
+ MIT
124
+
125
+ ### Citation Information
126
+
127
+ To be updated soon...
128
+
129
+ ### Contributions
130
+
131
+ Thanks to [@apepa](https://github.com/apepa) for adding this dataset.