Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,65 @@
|
|
1 |
---
|
2 |
-
license:
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
license: cc-by-sa-3.0
|
3 |
+
task_categories:
|
4 |
+
- question-answering
|
5 |
+
- sentence-similarity
|
6 |
+
- feature-extraction
|
7 |
+
language:
|
8 |
+
- en
|
9 |
---
|
10 |
+
|
11 |
+
# Dataset Card for "nq"
|
12 |
+
|
13 |
+
## Table of Contents
|
14 |
+
- [Table of Contents](#table-of-contents)
|
15 |
+
- [Dataset Description](#dataset-description)
|
16 |
+
- [Dataset Summary](#dataset-summary)
|
17 |
+
- [Dataset Structure](#dataset-structure)
|
18 |
+
- [Data Instances](#data-instances)
|
19 |
+
- [Data Fields](#data-fields)
|
20 |
+
- [Additional Information](#additional-information)
|
21 |
+
- [Licensing Information](#licensing-information)
|
22 |
+
|
23 |
+
## Dataset Description
|
24 |
+
|
25 |
+
|
26 |
+
- **Homepage:** [https://ai.google.com/research/NaturalQuestions](https://ai.google.com/research/NaturalQuestions)
|
27 |
+
|
28 |
+
### Dataset Summary
|
29 |
+
|
30 |
+
This is a modified version of the original Natural Questions (nq) dataset for qa tasks. The original is availabe [here](https://ai.google.com/research/NaturalQuestions).
|
31 |
+
|
32 |
+
Each sample was preprocessed into a squadlike format. The context was shortened from an entire wikipedia article into the passage containing the answer.
|
33 |
+
## Dataset Structure
|
34 |
+
|
35 |
+
### Data Instances
|
36 |
+
|
37 |
+
An example of 'train' looks as follows.
|
38 |
+
|
39 |
+
```json
|
40 |
+
{
|
41 |
+
"context": "The 2017 Major League Baseball All - Star Game was the 88th edition of the Major League Baseball All Star Game. The game was",
|
42 |
+
"question": "where is the 2017 baseball all-star game being played",
|
43 |
+
"answers":
|
44 |
+
{
|
45 |
+
"text":["Marlins Park"],
|
46 |
+
"answer_start":[171]
|
47 |
+
}
|
48 |
+
}
|
49 |
+
```
|
50 |
+
|
51 |
+
### Data Fields
|
52 |
+
|
53 |
+
The data fields are the same among all splits.
|
54 |
+
|
55 |
+
- `question`: a `string` feature.
|
56 |
+
- `context`: a `string` feature.
|
57 |
+
- - `answers`: a dictionary feature containing:
|
58 |
+
- `text`: a `string` feature.
|
59 |
+
- `answer_start`: a `int32` feature.
|
60 |
+
|
61 |
+
## Additional Information
|
62 |
+
|
63 |
+
### Licensing Information
|
64 |
+
|
65 |
+
This dataset is distributed under the cc-by-sa-3.0 license.
|