Datasets:
Tasks:
Text2Text Generation
Modalities:
Text
Formats:
parquet
Sub-tasks:
abstractive-qa
Languages:
English
Size:
10K - 100K
ArXiv:
License:
Update loading script
Browse files- narrativeqa.py +5 -2
narrativeqa.py
CHANGED
@@ -39,9 +39,12 @@ _DESCRIPTION = """\
|
|
39 |
The NarrativeQA dataset for question answering on long documents (movie scripts, books). It includes the list of documents with Wikipedia summaries, links to full stories, and questions and answers.
|
40 |
"""
|
41 |
|
|
|
|
|
|
|
42 |
_URLS = {
|
43 |
-
"full_text": "
|
44 |
-
"repo": "
|
45 |
}
|
46 |
|
47 |
|
|
|
39 |
The NarrativeQA dataset for question answering on long documents (movie scripts, books). It includes the list of documents with Wikipedia summaries, links to full stories, and questions and answers.
|
40 |
"""
|
41 |
|
42 |
+
# Source:
|
43 |
+
# - full_text: https://storage.googleapis.com/huggingface-nlp/datasets/narrative_qa/narrativeqa_full_text.zip
|
44 |
+
# - repo: https://github.com/deepmind/narrativeqa/archive/master.zip
|
45 |
_URLS = {
|
46 |
+
"full_text": "data/narrativeqa_full_text.zip",
|
47 |
+
"repo": "data/narrativeqa-master.zip",
|
48 |
}
|
49 |
|
50 |
|