Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
Dask
License:
albertvillanova HF staff commited on
Commit
566a316
1 Parent(s): 7570a0e

Update loading script

Browse files
Files changed (1) hide show
  1. 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": "https://storage.googleapis.com/huggingface-nlp/datasets/narrative_qa/narrativeqa_full_text.zip",
44
- "repo": "https://github.com/deepmind/narrativeqa/archive/master.zip",
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