system HF staff commited on
Commit
31a153c
1 Parent(s): d4cca19

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 +165 -0
README.md ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "natural_questions"
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://ai.google.com/research/NaturalQuestions/dataset](https://ai.google.com/research/NaturalQuestions/dataset)
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:** 42981.34 MB
37
+ - **Size of the generated dataset:** 95175.86 MB
38
+ - **Total amount of disk used:** 138157.19 MB
39
+
40
+ ### [Dataset Summary](#dataset-summary)
41
+
42
+ The NQ corpus contains questions from real users, and it requires QA systems to
43
+ read and comprehend an entire Wikipedia article that may or may not contain the
44
+ answer to the question. The inclusion of real user questions, and the
45
+ requirement that solutions should read an entire page to find the answer, cause
46
+ NQ to be a more realistic and challenging task than prior QA datasets.
47
+
48
+ ### [Supported Tasks](#supported-tasks)
49
+
50
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
51
+
52
+ ### [Languages](#languages)
53
+
54
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
55
+
56
+ ## [Dataset Structure](#dataset-structure)
57
+
58
+ We show detailed information for up to 5 configurations of the dataset.
59
+
60
+ ### [Data Instances](#data-instances)
61
+
62
+ #### default
63
+
64
+ - **Size of downloaded dataset files:** 42981.34 MB
65
+ - **Size of the generated dataset:** 95175.86 MB
66
+ - **Total amount of disk used:** 138157.19 MB
67
+
68
+ An example of 'train' looks as follows.
69
+ ```
70
+
71
+ ```
72
+
73
+ ### [Data Fields](#data-fields)
74
+
75
+ The data fields are the same among all splits.
76
+
77
+ #### default
78
+ - `id`: a `string` feature.
79
+ - `title`: a `string` feature.
80
+ - `url`: a `string` feature.
81
+ - `html`: a `string` feature.
82
+ - `tokens`: a dictionary feature containing:
83
+ - `token`: a `string` feature.
84
+ - `is_html`: a `bool` feature.
85
+ - `text`: a `string` feature.
86
+ - `tokens`: a `list` of `string` features.
87
+ - `annotations`: a dictionary feature containing:
88
+ - `id`: a `string` feature.
89
+ - `start_token`: a `int64` feature.
90
+ - `end_token`: a `int64` feature.
91
+ - `start_byte`: a `int64` feature.
92
+ - `end_byte`: a `int64` feature.
93
+ - `short_answers`: a dictionary feature containing:
94
+ - `start_token`: a `int64` feature.
95
+ - `end_token`: a `int64` feature.
96
+ - `start_byte`: a `int64` feature.
97
+ - `end_byte`: a `int64` feature.
98
+ - `text`: a `string` feature.
99
+ - `yes_no_answer`: a classification label, with possible values including `NO` (0), `YES` (1).
100
+
101
+ ### [Data Splits Sample Size](#data-splits-sample-size)
102
+
103
+ | name |train |validation|
104
+ |-------|-----:|---------:|
105
+ |default|307373| 7830|
106
+
107
+ ## [Dataset Creation](#dataset-creation)
108
+
109
+ ### [Curation Rationale](#curation-rationale)
110
+
111
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
112
+
113
+ ### [Source Data](#source-data)
114
+
115
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
116
+
117
+ ### [Annotations](#annotations)
118
+
119
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
120
+
121
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
122
+
123
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
124
+
125
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
126
+
127
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
128
+
129
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
130
+
131
+ ### [Discussion of Biases](#discussion-of-biases)
132
+
133
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
134
+
135
+ ### [Other Known Limitations](#other-known-limitations)
136
+
137
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
138
+
139
+ ## [Additional Information](#additional-information)
140
+
141
+ ### [Dataset Curators](#dataset-curators)
142
+
143
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
144
+
145
+ ### [Licensing Information](#licensing-information)
146
+
147
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
148
+
149
+ ### [Citation Information](#citation-information)
150
+
151
+ ```
152
+
153
+ @article{47761,
154
+ title = {Natural Questions: a Benchmark for Question Answering Research},
155
+ author = {Tom Kwiatkowski and Jennimaria Palomaki and Olivia Redfield and Michael Collins and Ankur Parikh and Chris Alberti and Danielle Epstein and Illia Polosukhin and Matthew Kelcey and Jacob Devlin and Kenton Lee and Kristina N. Toutanova and Llion Jones and Ming-Wei Chang and Andrew Dai and Jakob Uszkoreit and Quoc Le and Slav Petrov},
156
+ year = {2019},
157
+ journal = {Transactions of the Association of Computational Linguistics}
158
+ }
159
+
160
+ ```
161
+
162
+
163
+ ### Contributions
164
+
165
+ Thanks to [@thomwolf](https://github.com/thomwolf), [@lhoestq](https://github.com/lhoestq) for adding this dataset.