|
--- |
|
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 ... |
|
span: 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", trust_remote_code=True) |
|
``` |