Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
pretty_name: SciFact
|
3 |
+
---
|
4 |
+
|
5 |
+
## Dataset Description
|
6 |
+
|
7 |
+
This is yet another attempt to have a useful dataset script for SciFact. In constrast to the [original script by AllenAI](https://huggingface.co/datasets/allenai/scifact), we provide two views (config names), each consisting of all the data:
|
8 |
+
1. `as_claims`: Instances are claims with its `cited_document_ids` resolved to their actual document content, saved in `cited_documents`, and
|
9 |
+
2. `as_documents`: Instances are documents with its related claims, i.e. claims that originally linked the document at hand via `cited_document_ids`.
|
10 |
+
|
11 |
+
### Citation Information
|
12 |
+
|
13 |
+
```
|
14 |
+
@inproceedings{wadden-etal-2020-fact,
|
15 |
+
title = "Fact or Fiction: Verifying Scientific Claims",
|
16 |
+
author = "Wadden, David and
|
17 |
+
Lin, Shanchuan and
|
18 |
+
Lo, Kyle and
|
19 |
+
Wang, Lucy Lu and
|
20 |
+
van Zuylen, Madeleine and
|
21 |
+
Cohan, Arman and
|
22 |
+
Hajishirzi, Hannaneh",
|
23 |
+
booktitle = "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
|
24 |
+
month = nov,
|
25 |
+
year = "2020",
|
26 |
+
address = "Online",
|
27 |
+
publisher = "Association for Computational Linguistics",
|
28 |
+
url = "https://aclanthology.org/2020.emnlp-main.609",
|
29 |
+
doi = "10.18653/v1/2020.emnlp-main.609",
|
30 |
+
pages = "7534--7550",
|
31 |
+
}
|
32 |
+
```
|