Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
size_categories:
|
6 |
+
- 1K<n<10K
|
7 |
+
---
|
8 |
+
|
9 |
+
"""CoQA dataset.
|
10 |
+
|
11 |
+
This `CoQA` adds the "additional_answers" feature that's missing in the original
|
12 |
+
datasets version:
|
13 |
+
https://github.com/huggingface/datasets/blob/master/datasets/coqa/coqa.py
|
14 |
+
"""
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
+
_CITATION = """\
|
19 |
+
@misc{reddy2018coqa,
|
20 |
+
title={CoQA: A Conversational Question Answering Challenge},
|
21 |
+
author={Siva Reddy and Danqi Chen and Christopher D. Manning},
|
22 |
+
year={2018},
|
23 |
+
eprint={1808.07042},
|
24 |
+
archivePrefix={arXiv},
|
25 |
+
primaryClass={cs.CL}
|
26 |
+
}
|
27 |
+
"""
|
28 |
+
|
29 |
+
_DESCRIPTION = """\
|
30 |
+
CoQA is a large-scale dataset for building Conversational Question Answering
|
31 |
+
systems. The goal of the CoQA challenge is to measure the ability of machines to
|
32 |
+
understand a text passage and answer a series of interconnected questions that
|
33 |
+
appear in a conversation.
|
34 |
+
"""
|
35 |
+
|
36 |
+
_HOMEPAGE = "https://stanfordnlp.github.io/coqa/"
|
37 |
+
|
38 |
+
_LICENSE = "Different licenses depending on the content (see https://stanfordnlp.github.io/coqa/ for details)"
|