Datasets:

Modalities:
Text
Formats:
json
Libraries:
Datasets
pandas
License:
File size: 855 Bytes
98408b2
 
 
215c76c
98408b2
145db43
98408b2
 
ddfdeac
98408b2
bbcf5e7
98408b2
 
0de97bb
 
52b42cb
 
 
 
bbcf5e7
52b42cb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
license: apache-2.0
---
# FEVER (span annotated)

This dataset consists of the test set taken from the original [FEVER dataset](https://huggingface.co./datasets/fever/fever), as tsv files with the following example format:

```
query: Home Alone is a film.
document: Home Alone is a 1990 American Christmas comedy film written and produced by John Hughes and directed by Chris Columbus ...
spans: [121:270]
```

The spans indicate on character level, which sentences in the document are relevant to the claim, and are derived from the sentence level annotations of the original FEVER dataset. 
This test set only includes claim and document pairs that are labelled as SUPPORTS and have a sentence number annotated that is not -1.
It can be loaded as follows:

```
from datasets import load_dataset
data = load_dataset("jinaai/fever-span-annotated")
```