Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Tags:
License:
system HF staff commited on
Commit
4c8e015
1 Parent(s): ae8fb9b

Update files from the datasets library (from 1.3.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.3.0

Files changed (1) hide show
  1. README.md +163 -0
README.md ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "squad_v2"
5
+
6
+ ## Table of Contents
7
+ - [Dataset Description](#dataset-description)
8
+ - [Dataset Summary](#dataset-summary)
9
+ - [Supported Tasks](#supported-tasks)
10
+ - [Languages](#languages)
11
+ - [Dataset Structure](#dataset-structure)
12
+ - [Data Instances](#data-instances)
13
+ - [Data Fields](#data-fields)
14
+ - [Data Splits Sample Size](#data-splits-sample-size)
15
+ - [Dataset Creation](#dataset-creation)
16
+ - [Curation Rationale](#curation-rationale)
17
+ - [Source Data](#source-data)
18
+ - [Annotations](#annotations)
19
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
20
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
21
+ - [Social Impact of Dataset](#social-impact-of-dataset)
22
+ - [Discussion of Biases](#discussion-of-biases)
23
+ - [Other Known Limitations](#other-known-limitations)
24
+ - [Additional Information](#additional-information)
25
+ - [Dataset Curators](#dataset-curators)
26
+ - [Licensing Information](#licensing-information)
27
+ - [Citation Information](#citation-information)
28
+ - [Contributions](#contributions)
29
+
30
+ ## [Dataset Description](#dataset-description)
31
+
32
+ - **Homepage:** [https://rajpurkar.github.io/SQuAD-explorer/](https://rajpurkar.github.io/SQuAD-explorer/)
33
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
34
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
35
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
36
+ - **Size of downloaded dataset files:** 44.34 MB
37
+ - **Size of the generated dataset:** 122.57 MB
38
+ - **Total amount of disk used:** 166.91 MB
39
+
40
+ ### [Dataset Summary](#dataset-summary)
41
+
42
+ combines the 100,000 questions in SQuAD1.1 with over 50,000 unanswerable questions written adversarially by crowdworkers
43
+ to look similar to answerable ones. To do well on SQuAD2.0, systems must not only answer questions when possible, but
44
+ also determine when no answer is supported by the paragraph and abstain from answering.
45
+
46
+ ### [Supported Tasks](#supported-tasks)
47
+
48
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
49
+
50
+ ### [Languages](#languages)
51
+
52
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
53
+
54
+ ## [Dataset Structure](#dataset-structure)
55
+
56
+ We show detailed information for up to 5 configurations of the dataset.
57
+
58
+ ### [Data Instances](#data-instances)
59
+
60
+ #### squad_v2
61
+
62
+ - **Size of downloaded dataset files:** 44.34 MB
63
+ - **Size of the generated dataset:** 122.57 MB
64
+ - **Total amount of disk used:** 166.91 MB
65
+
66
+ An example of 'validation' looks as follows.
67
+ ```
68
+ This example was too long and was cropped:
69
+
70
+ {
71
+ "answers": {
72
+ "answer_start": [94, 87, 94, 94],
73
+ "text": ["10th and 11th centuries", "in the 10th and 11th centuries", "10th and 11th centuries", "10th and 11th centuries"]
74
+ },
75
+ "context": "\"The Normans (Norman: Nourmands; French: Normands; Latin: Normanni) were the people who in the 10th and 11th centuries gave thei...",
76
+ "id": "56ddde6b9a695914005b9629",
77
+ "question": "When were the Normans in Normandy?",
78
+ "title": "Normans"
79
+ }
80
+ ```
81
+
82
+ ### [Data Fields](#data-fields)
83
+
84
+ The data fields are the same among all splits.
85
+
86
+ #### squad_v2
87
+ - `id`: a `string` feature.
88
+ - `title`: a `string` feature.
89
+ - `context`: a `string` feature.
90
+ - `question`: a `string` feature.
91
+ - `answers`: a dictionary feature containing:
92
+ - `text`: a `string` feature.
93
+ - `answer_start`: a `int32` feature.
94
+
95
+ ### [Data Splits Sample Size](#data-splits-sample-size)
96
+
97
+ | name |train |validation|
98
+ |--------|-----:|---------:|
99
+ |squad_v2|130319| 11873|
100
+
101
+ ## [Dataset Creation](#dataset-creation)
102
+
103
+ ### [Curation Rationale](#curation-rationale)
104
+
105
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
106
+
107
+ ### [Source Data](#source-data)
108
+
109
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
110
+
111
+ ### [Annotations](#annotations)
112
+
113
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
114
+
115
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
116
+
117
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
118
+
119
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
120
+
121
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
122
+
123
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
124
+
125
+ ### [Discussion of Biases](#discussion-of-biases)
126
+
127
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
128
+
129
+ ### [Other Known Limitations](#other-known-limitations)
130
+
131
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
132
+
133
+ ## [Additional Information](#additional-information)
134
+
135
+ ### [Dataset Curators](#dataset-curators)
136
+
137
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
138
+
139
+ ### [Licensing Information](#licensing-information)
140
+
141
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
142
+
143
+ ### [Citation Information](#citation-information)
144
+
145
+ ```
146
+ @article{2016arXiv160605250R,
147
+ author = {{Rajpurkar}, Pranav and {Zhang}, Jian and {Lopyrev},
148
+ Konstantin and {Liang}, Percy},
149
+ title = "{SQuAD: 100,000+ Questions for Machine Comprehension of Text}",
150
+ journal = {arXiv e-prints},
151
+ year = 2016,
152
+ eid = {arXiv:1606.05250},
153
+ pages = {arXiv:1606.05250},
154
+ archivePrefix = {arXiv},
155
+ eprint = {1606.05250},
156
+ }
157
+
158
+ ```
159
+
160
+
161
+ ### Contributions
162
+
163
+ Thanks to [@lewtun](https://github.com/lewtun), [@albertvillanova](https://github.com/albertvillanova), [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf) for adding this dataset.