tommasobonomo commited on
Commit
e73bbd0
1 Parent(s): df23d90

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -138,4 +138,38 @@ configs:
138
  path: data/validation-*
139
  - split: test
140
  path: data/test-*
 
 
 
 
 
 
141
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  path: data/validation-*
139
  - split: test
140
  path: data/test-*
141
+ license: mit
142
+ language:
143
+ - en
144
+ pretty_name: Semantically-augmented FEVER for NLI
145
+ size_categories:
146
+ - 10K<n<100K
147
  ---
148
+ # Semantically-augmented FEVER for NLI
149
+
150
+ This dataset is a random downsample of the [FEVER dataset adapted for NLI](https://github.com/easonnie/combine-FEVER-NSMN/blob/master/other_resources/nli_fever.md).
151
+ We downsampled the training and development set to 25% of the original, and recovered labels for the development set from the original [FEVER dataset](https://huggingface.co/datasets/fever/fever).
152
+
153
+ The dataset is also augmented with semantic annotations such as Word Sense Disambiguation (WSD) and Semantic Role Labeling (SRL) information.
154
+ We annotated the whole downsampled dataset (both `premise` and `hypothesis`) with [AMuSE-WSD](https://aclanthology.org/2021.emnlp-demo.34) (Orlando et al., EMNLP 2021) and [InVeRo](https://aclanthology.org/2020.emnlp-demos.11) (Conia et al., EMNLP 2020).
155
+
156
+
157
+ ## Dataset Creation
158
+
159
+ The idea was to curate a version of the FEVER dataset adapted to the NLI task for Homework 2 of the Multilingual Natural Language Processing 2024 course at Sapienza University of Rome.
160
+
161
+ We sourced the data following the instructions in [this repo](https://github.com/easonnie/combine-FEVER-NSMN/blob/master/other_resources/nli_fever.md), modifying the labels to the following schema:
162
+
163
+ ```json
164
+ {
165
+ "id": ..., # the FEVER dataset ID
166
+ "premise": ..., # the context in FEVER
167
+ "hypothesis": ..., # the query in FEVER
168
+ "label": ..., # mapped version of FEVER, where 'supports' -> 'entailment', 'refutes' -> 'contradiction' and 'not enough info' -> 'neutral'
169
+ }
170
+ ```
171
+
172
+ We filtered out any sample with an empty premise (a minority of the data) and downsampled both `train_fitems.jsonl` and `dev_fitems.jsonl` to 25% of their total size.
173
+ We then recovered the labels for the development set from the `labelled_dev` split in the [original FEVER](https://huggingface.co/datasets/fever/fever) and split the development set into the final `dev.jsonl` and `test.jsonl`.
174
+
175
+ Finally, we ran both AMuSE-WSD and InVeRo to augment our samples with WSD and SRL annotations, respectively.