Update README.md
Browse files
README.md
CHANGED
@@ -11,4 +11,10 @@ document: Home Alone is a 1990 American Christmas comedy film written and produc
|
|
11 |
span: 121:270
|
12 |
```
|
13 |
|
14 |
-
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
span: 121:270
|
12 |
```
|
13 |
|
14 |
+
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.
|
15 |
+
It can be loaded as follows:
|
16 |
+
|
17 |
+
```
|
18 |
+
from datasets import load_dataset
|
19 |
+
data = load_dataset("jinaai/fever-span-annotated", trust_remote_code=True)
|
20 |
+
```
|