Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-sa-3.0
|
3 |
+
task_categories:
|
4 |
+
- sentence-similarity
|
5 |
+
- feature-extraction
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
---
|
9 |
+
|
10 |
+
# Dataset Card for "nq"
|
11 |
+
|
12 |
+
## Table of Contents
|
13 |
+
- [Table of Contents](#table-of-contents)
|
14 |
+
- [Dataset Description](#dataset-description)
|
15 |
+
- [Dataset Summary](#dataset-summary)
|
16 |
+
- [Dataset Structure](#dataset-structure)
|
17 |
+
- [Data Instances](#data-instances)
|
18 |
+
- [Data Fields](#data-fields)
|
19 |
+
- [Additional Information](#additional-information)
|
20 |
+
- [Licensing Information](#licensing-information)
|
21 |
+
|
22 |
+
## Dataset Description
|
23 |
+
|
24 |
+
|
25 |
+
- **Homepage:** [https://ai.google.com/research/NaturalQuestions](https://ai.google.com/research/NaturalQuestions)
|
26 |
+
|
27 |
+
### Dataset Summary
|
28 |
+
|
29 |
+
This is a modified version of the original Natural Questions (nq) dataset for retrieval tasks. The original is availabe [here](https://ai.google.com/research/NaturalQuestions).
|
30 |
+
|
31 |
+
It contains google queries and an entire stripped wikipedia article for each query.
|
32 |
+
## Dataset Structure
|
33 |
+
|
34 |
+
### Data Instances
|
35 |
+
|
36 |
+
An example of 'train' looks as follows.
|
37 |
+
|
38 |
+
```json
|
39 |
+
{
|
40 |
+
"question": "who competes in miss universe miss america or miss usa",
|
41 |
+
"context": "Miss USA - Wikipedia\nThe Miss USA is an American beauty pageant that has been held annually since 1952 to select the Amer ...",
|
42 |
+
}
|
43 |
+
```
|
44 |
+
|
45 |
+
### Data Fields
|
46 |
+
|
47 |
+
The data fields are the same among all splits.
|
48 |
+
|
49 |
+
- `question`: a `string` feature.
|
50 |
+
- `context`: a `string` feature.
|
51 |
+
|
52 |
+
## Additional Information
|
53 |
+
|
54 |
+
### Licensing Information
|
55 |
+
|
56 |
+
This dataset is distributed under the cc-by-sa-3.0 license.
|
57 |
+
```
|