Lexi commited on
Commit
0f39b4e
1 Parent(s): b2e98ba

Upload NQ_squad_format.py

Browse files
Files changed (1) hide show
  1. NQ_squad_format.py +127 -0
NQ_squad_format.py ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2020 The TensorFlow Datasets Authors and the HuggingFace Datasets Authors.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ # Lint as: python3
17
+ """SQUAD: The Stanford Question Answering Dataset."""
18
+
19
+
20
+ import json
21
+
22
+ import datasets
23
+ from datasets.tasks import QuestionAnsweringExtractive
24
+
25
+
26
+ logger = datasets.logging.get_logger(__name__)
27
+
28
+
29
+ _CITATION = """\
30
+ @article{2016arXiv160605250R,
31
+ author = {{Rajpurkar}, Pranav and {Zhang}, Jian and {Lopyrev},
32
+ Konstantin and {Liang}, Percy},
33
+ title = "{SQuAD: 100,000+ Questions for Machine Comprehension of Text}",
34
+ journal = {arXiv e-prints},
35
+ year = 2016,
36
+ eid = {arXiv:1606.05250},
37
+ pages = {arXiv:1606.05250},
38
+ archivePrefix = {arXiv},
39
+ eprint = {1606.05250},
40
+ }
41
+ """
42
+
43
+ _DESCRIPTION = """\
44
+ Stanford Question Answering Dataset (SQuAD) is a reading comprehension \
45
+ dataset, consisting of questions posed by crowdworkers on a set of Wikipedia \
46
+ articles, where the answer to every question is a segment of text, or span, \
47
+ from the corresponding reading passage, or the question might be unanswerable.
48
+ """
49
+
50
+ _URL = "https://rajpurkar.github.io/SQuAD-explorer/dataset/"
51
+ _URLS = {
52
+ "train": _URL + "train-v1.1.json",
53
+ "dev": _URL + "dev-v1.1.json",
54
+ }
55
+
56
+
57
+ class SquadConfig(datasets.BuilderConfig):
58
+ """BuilderConfig for SQUAD."""
59
+
60
+ def __init__(self, **kwargs):
61
+ """BuilderConfig for SQUAD.
62
+
63
+ Args:
64
+ **kwargs: keyword arguments forwarded to super.
65
+ """
66
+ super(SquadConfig, self).__init__(**kwargs)
67
+
68
+
69
+ class Squad(datasets.GeneratorBasedBuilder):
70
+ """SQUAD: The Stanford Question Answering Dataset. Version 1.1."""
71
+
72
+ BUILDER_CONFIGS = [
73
+ SquadConfig(
74
+ name="plain_text",
75
+ version=datasets.Version("1.0.0", ""),
76
+ description="Plain text",
77
+ ),
78
+ ]
79
+
80
+ def _info(self):
81
+ return datasets.DatasetInfo(
82
+ description=_DESCRIPTION,
83
+ features=datasets.Features(
84
+ {
85
+ "id": datasets.Value("int32"),
86
+ "context": datasets.Value("string"),
87
+ "question": datasets.Value("string"),
88
+ "answers": datasets.features.Sequence(
89
+ {
90
+ "text": datasets.Value("string"),
91
+ "answer_start": datasets.Value("int32"),
92
+ }
93
+ ),
94
+ }
95
+ ),
96
+ # No default supervised_keys (as we have to pass both question
97
+ # and context as input).
98
+ supervised_keys=None,
99
+ task_templates=[
100
+ QuestionAnsweringExtractive(
101
+ question_column="question", context_column="context", answers_column="answers"
102
+ )
103
+ ],
104
+ )
105
+
106
+ def _split_generators(self, dl_manager):
107
+ downloaded_files = dl_manager.download_and_extract(_URLS)
108
+
109
+ return [
110
+ datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepath": downloaded_files["train"]}),
111
+ datasets.SplitGenerator(name=datasets.Split.VALIDATION, gen_kwargs={"filepath": downloaded_files["dev"]}),
112
+ ]
113
+
114
+ def _generate_examples(self, filepath):
115
+ """This function returns the examples in the raw (text) form."""
116
+ logger.info("generating examples from = %s", filepath)
117
+ key = 0
118
+ with open(filepath, encoding="utf-8") as f:
119
+ squad = json.load(f)
120
+ for line in squad:
121
+ yield key, {
122
+ "context": line['context'],
123
+ "question": line["question"],
124
+ "id": line["id"],
125
+ "answers": line['answers']
126
+ }
127
+ key += 1