Datasets:
David Wadden
commited on
Commit
•
621da8d
1
Parent(s):
fd02f3e
Update the README.
Browse files
README.md
CHANGED
@@ -1,3 +1,90 @@
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
annotations_creators:
|
3 |
+
- expert-generated
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
language_creators:
|
7 |
+
- found
|
8 |
+
license:
|
9 |
+
- cc-by-nc-2.0
|
10 |
+
multilinguality:
|
11 |
+
- monolingual
|
12 |
+
pretty_name: SciFact
|
13 |
+
size_categories:
|
14 |
+
- 1K<n<10K
|
15 |
+
source_datasets:
|
16 |
+
- original
|
17 |
+
task_categories:
|
18 |
+
- text-classification
|
19 |
+
task_ids:
|
20 |
+
- fact-checking
|
21 |
+
paperswithcode_id: scifact
|
22 |
+
dataset_info:
|
23 |
+
features:
|
24 |
+
- name: claim_id
|
25 |
+
dtype: int32
|
26 |
+
- name: claim
|
27 |
+
dtype: string
|
28 |
+
- name: abstract_id
|
29 |
+
dtype: int32
|
30 |
+
- name: title
|
31 |
+
dtype: string
|
32 |
+
- name: abstract
|
33 |
+
sequence: string
|
34 |
+
- name: verdict
|
35 |
+
dtype: string
|
36 |
+
- name: evidence
|
37 |
+
sequence: int32
|
38 |
+
splits:
|
39 |
+
- name: train
|
40 |
+
num_bytes: 1649655
|
41 |
+
num_examples: 919
|
42 |
+
- name: validation
|
43 |
+
num_bytes: 605262
|
44 |
+
num_examples: 340
|
45 |
+
download_size: 3115079
|
46 |
+
dataset_size: 2254917
|
47 |
---
|
48 |
+
|
49 |
+
|
50 |
+
# Dataset Card for "scifact_entailment"
|
51 |
+
|
52 |
+
## Table of Contents
|
53 |
+
|
54 |
+
- [Dataset Description](#dataset-description)
|
55 |
+
- [Dataset Summary](#dataset-summary)
|
56 |
+
- [Dataset Structure](#dataset-structure)
|
57 |
+
- [Data Fields](#data-fields)
|
58 |
+
- [Data Splits](#data-splits)
|
59 |
+
|
60 |
+
## Dataset Description
|
61 |
+
|
62 |
+
- **Homepage:** [https://scifact.apps.allenai.org/](https://scifact.apps.allenai.org/)
|
63 |
+
- **Repository:** <https://github.com/allenai/scifact>
|
64 |
+
- **Paper:** [Fact or Fiction: Verifying Scientific Claims](https://aclanthology.org/2020.emnlp-main.609/)
|
65 |
+
- **Point of Contact:** [David Wadden](mailto:davidw@allenai.org)
|
66 |
+
|
67 |
+
### Dataset Summary
|
68 |
+
|
69 |
+
SciFact, a dataset of 1.4K expert-written scientific claims paired with evidence-containing abstracts, and annotated with labels and rationales.
|
70 |
+
|
71 |
+
For more information on the dataset, see [allenai/scifact](https://huggingface.co/datasets/allenai/scifact).
|
72 |
+
This has the same data, but reformatted as an entailment task. A single instance includes a claim paired with a paper title and abstract, together with an entailment label and a list of evidence sentences (if any).
|
73 |
+
|
74 |
+
## Dataset Structure
|
75 |
+
|
76 |
+
### Data fields
|
77 |
+
|
78 |
+
- `claim_id`: An `int32` claim identifier.
|
79 |
+
- `claim`: A `string`.
|
80 |
+
- `abstract_id`: An `int32` abstract identifier.
|
81 |
+
- `title`: A `string`.
|
82 |
+
- `abstract`: A list of `strings`, one for each sentence in the abstract.
|
83 |
+
- `verdict`: The fact-checking verdict, a `string`.
|
84 |
+
- `evidence`: A list of sentences from the abstract which provide evidence for the verdict.
|
85 |
+
|
86 |
+
### Data Splits
|
87 |
+
|
88 |
+
| |train|validation|
|
89 |
+
|------|----:|---------:|
|
90 |
+
|claims| 919 | 340|
|