lhoestq HF staff commited on
Commit
3d1d4a0
1 Parent(s): 86f88c0

add dataset_info in dataset metadata

Browse files
Files changed (1) hide show
  1. README.md +78 -1
README.md CHANGED
@@ -19,6 +19,83 @@ task_categories:
19
  task_ids:
20
  - open-domain-qa
21
  paperswithcode_id: natural-questions
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ---
23
 
24
  # Dataset Card for Natural Questions
@@ -253,4 +330,4 @@ journal = {Transactions of the Association of Computational Linguistics}
253
 
254
  ### Contributions
255
 
256
- Thanks to [@thomwolf](https://github.com/thomwolf), [@lhoestq](https://github.com/lhoestq) for adding this dataset.
19
  task_ids:
20
  - open-domain-qa
21
  paperswithcode_id: natural-questions
22
+ dataset_info:
23
+ features:
24
+ - name: id
25
+ dtype: string
26
+ - name: document
27
+ struct:
28
+ - name: title
29
+ dtype: string
30
+ - name: url
31
+ dtype: string
32
+ - name: html
33
+ dtype: string
34
+ - name: tokens
35
+ sequence:
36
+ - name: token
37
+ dtype: string
38
+ - name: is_html
39
+ dtype: bool
40
+ - name: question
41
+ struct:
42
+ - name: text
43
+ dtype: string
44
+ - name: tokens
45
+ sequence: string
46
+ - name: annotations
47
+ sequence:
48
+ - name: id
49
+ dtype: string
50
+ - name: long_answer
51
+ struct:
52
+ - name: start_token
53
+ dtype: int64
54
+ - name: end_token
55
+ dtype: int64
56
+ - name: start_byte
57
+ dtype: int64
58
+ - name: end_byte
59
+ dtype: int64
60
+ - name: short_answers
61
+ sequence:
62
+ - name: start_token
63
+ dtype: int64
64
+ - name: end_token
65
+ dtype: int64
66
+ - name: start_byte
67
+ dtype: int64
68
+ - name: end_byte
69
+ dtype: int64
70
+ - name: text
71
+ dtype: string
72
+ - name: yes_no_answer
73
+ dtype:
74
+ class_label:
75
+ names:
76
+ 0: 'NO'
77
+ 1: 'YES'
78
+ - name: long_answer_candidates
79
+ sequence:
80
+ - name: start_token
81
+ dtype: int64
82
+ - name: end_token
83
+ dtype: int64
84
+ - name: start_byte
85
+ dtype: int64
86
+ - name: end_byte
87
+ dtype: int64
88
+ - name: top_label
89
+ dtype: bool
90
+ splits:
91
+ - name: train
92
+ num_bytes: 97445142568
93
+ num_examples: 307373
94
+ - name: validation
95
+ num_bytes: 2353975312
96
+ num_examples: 7830
97
+ download_size: 45069199013
98
+ dataset_size: 99799117880
99
  ---
100
 
101
  # Dataset Card for Natural Questions
330
 
331
  ### Contributions
332
 
333
+ Thanks to [@thomwolf](https://github.com/thomwolf), [@lhoestq](https://github.com/lhoestq) for adding this dataset.