Datasets:
Tasks:
Question Answering
Formats:
parquet
Sub-tasks:
open-domain-qa
Languages:
English
Size:
10K - 100K
License:
Commit
•
8c48880
1
Parent(s):
1c468ff
Convert dataset to Parquet
Browse filesConvert dataset to Parquet.
- README.md +30 -20
- dataset_infos.json +170 -1
- main/test-00000-of-00001.parquet +3 -0
- main/train-00000-of-00001.parquet +3 -0
- main/validation-00000-of-00001.parquet +3 -0
README.md
CHANGED
@@ -10,7 +10,6 @@ license:
|
|
10 |
- unknown
|
11 |
multilinguality:
|
12 |
- monolingual
|
13 |
-
pretty_name: OpenBookQA
|
14 |
size_categories:
|
15 |
- 1K<n<10K
|
16 |
source_datasets:
|
@@ -20,8 +19,9 @@ task_categories:
|
|
20 |
task_ids:
|
21 |
- open-domain-qa
|
22 |
paperswithcode_id: openbookqa
|
|
|
23 |
dataset_info:
|
24 |
-
- config_name:
|
25 |
features:
|
26 |
- name: id
|
27 |
dtype: string
|
@@ -35,19 +35,27 @@ dataset_info:
|
|
35 |
dtype: string
|
36 |
- name: answerKey
|
37 |
dtype: string
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
splits:
|
39 |
- name: train
|
40 |
-
num_bytes:
|
41 |
num_examples: 4957
|
42 |
- name: validation
|
43 |
-
num_bytes:
|
44 |
num_examples: 500
|
45 |
- name: test
|
46 |
-
num_bytes:
|
47 |
num_examples: 500
|
48 |
download_size: 1446098
|
49 |
-
dataset_size:
|
50 |
-
- config_name:
|
51 |
features:
|
52 |
- name: id
|
53 |
dtype: string
|
@@ -61,26 +69,28 @@ dataset_info:
|
|
61 |
dtype: string
|
62 |
- name: answerKey
|
63 |
dtype: string
|
64 |
-
- name: fact1
|
65 |
-
dtype: string
|
66 |
-
- name: humanScore
|
67 |
-
dtype: float32
|
68 |
-
- name: clarity
|
69 |
-
dtype: float32
|
70 |
-
- name: turkIdAnonymized
|
71 |
-
dtype: string
|
72 |
splits:
|
73 |
- name: train
|
74 |
-
num_bytes:
|
75 |
num_examples: 4957
|
76 |
- name: validation
|
77 |
-
num_bytes:
|
78 |
num_examples: 500
|
79 |
- name: test
|
80 |
-
num_bytes:
|
81 |
num_examples: 500
|
82 |
-
download_size:
|
83 |
-
dataset_size:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
---
|
85 |
|
86 |
# Dataset Card for OpenBookQA
|
|
|
10 |
- unknown
|
11 |
multilinguality:
|
12 |
- monolingual
|
|
|
13 |
size_categories:
|
14 |
- 1K<n<10K
|
15 |
source_datasets:
|
|
|
19 |
task_ids:
|
20 |
- open-domain-qa
|
21 |
paperswithcode_id: openbookqa
|
22 |
+
pretty_name: OpenBookQA
|
23 |
dataset_info:
|
24 |
+
- config_name: additional
|
25 |
features:
|
26 |
- name: id
|
27 |
dtype: string
|
|
|
35 |
dtype: string
|
36 |
- name: answerKey
|
37 |
dtype: string
|
38 |
+
- name: fact1
|
39 |
+
dtype: string
|
40 |
+
- name: humanScore
|
41 |
+
dtype: float32
|
42 |
+
- name: clarity
|
43 |
+
dtype: float32
|
44 |
+
- name: turkIdAnonymized
|
45 |
+
dtype: string
|
46 |
splits:
|
47 |
- name: train
|
48 |
+
num_bytes: 1290473
|
49 |
num_examples: 4957
|
50 |
- name: validation
|
51 |
+
num_bytes: 136141
|
52 |
num_examples: 500
|
53 |
- name: test
|
54 |
+
num_bytes: 130926
|
55 |
num_examples: 500
|
56 |
download_size: 1446098
|
57 |
+
dataset_size: 1557540
|
58 |
+
- config_name: main
|
59 |
features:
|
60 |
- name: id
|
61 |
dtype: string
|
|
|
69 |
dtype: string
|
70 |
- name: answerKey
|
71 |
dtype: string
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
splits:
|
73 |
- name: train
|
74 |
+
num_bytes: 895386
|
75 |
num_examples: 4957
|
76 |
- name: validation
|
77 |
+
num_bytes: 95428
|
78 |
num_examples: 500
|
79 |
- name: test
|
80 |
+
num_bytes: 91759
|
81 |
num_examples: 500
|
82 |
+
download_size: 609613
|
83 |
+
dataset_size: 1082573
|
84 |
+
configs:
|
85 |
+
- config_name: main
|
86 |
+
data_files:
|
87 |
+
- split: train
|
88 |
+
path: main/train-*
|
89 |
+
- split: validation
|
90 |
+
path: main/validation-*
|
91 |
+
- split: test
|
92 |
+
path: main/test-*
|
93 |
+
default: true
|
94 |
---
|
95 |
|
96 |
# Dataset Card for OpenBookQA
|
dataset_infos.json
CHANGED
@@ -1 +1,170 @@
|
|
1 |
-
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"main": {
|
3 |
+
"description": "OpenBookQA aims to promote research in advanced question-answering, probing a deeper understanding of both the topic\n(with salient facts summarized as an open book, also provided with the dataset) and the language it is expressed in. In\nparticular, it contains questions that require multi-step reasoning, use of additional common and commonsense knowledge,\nand rich text comprehension.\nOpenBookQA is a new kind of question-answering dataset modeled after open book exams for assessing human understanding\nof a subject.\n",
|
4 |
+
"citation": "@inproceedings{OpenBookQA2018,\n title={Can a Suit of Armor Conduct Electricity? A New Dataset for Open Book Question Answering},\n author={Todor Mihaylov and Peter Clark and Tushar Khot and Ashish Sabharwal},\n booktitle={EMNLP},\n year={2018}\n}\n",
|
5 |
+
"homepage": "https://allenai.org/data/open-book-qa",
|
6 |
+
"license": "",
|
7 |
+
"features": {
|
8 |
+
"id": {
|
9 |
+
"dtype": "string",
|
10 |
+
"_type": "Value"
|
11 |
+
},
|
12 |
+
"question_stem": {
|
13 |
+
"dtype": "string",
|
14 |
+
"_type": "Value"
|
15 |
+
},
|
16 |
+
"choices": {
|
17 |
+
"feature": {
|
18 |
+
"text": {
|
19 |
+
"dtype": "string",
|
20 |
+
"_type": "Value"
|
21 |
+
},
|
22 |
+
"label": {
|
23 |
+
"dtype": "string",
|
24 |
+
"_type": "Value"
|
25 |
+
}
|
26 |
+
},
|
27 |
+
"_type": "Sequence"
|
28 |
+
},
|
29 |
+
"answerKey": {
|
30 |
+
"dtype": "string",
|
31 |
+
"_type": "Value"
|
32 |
+
}
|
33 |
+
},
|
34 |
+
"builder_name": "openbookqa",
|
35 |
+
"dataset_name": "openbookqa",
|
36 |
+
"config_name": "main",
|
37 |
+
"version": {
|
38 |
+
"version_str": "1.0.1",
|
39 |
+
"description": "",
|
40 |
+
"major": 1,
|
41 |
+
"minor": 0,
|
42 |
+
"patch": 1
|
43 |
+
},
|
44 |
+
"splits": {
|
45 |
+
"train": {
|
46 |
+
"name": "train",
|
47 |
+
"num_bytes": 895386,
|
48 |
+
"num_examples": 4957,
|
49 |
+
"dataset_name": null
|
50 |
+
},
|
51 |
+
"validation": {
|
52 |
+
"name": "validation",
|
53 |
+
"num_bytes": 95428,
|
54 |
+
"num_examples": 500,
|
55 |
+
"dataset_name": null
|
56 |
+
},
|
57 |
+
"test": {
|
58 |
+
"name": "test",
|
59 |
+
"num_bytes": 91759,
|
60 |
+
"num_examples": 500,
|
61 |
+
"dataset_name": null
|
62 |
+
}
|
63 |
+
},
|
64 |
+
"download_size": 609613,
|
65 |
+
"dataset_size": 1082573,
|
66 |
+
"size_in_bytes": 1692186
|
67 |
+
},
|
68 |
+
"additional": {
|
69 |
+
"description": "OpenBookQA aims to promote research in advanced question-answering, probing a deeper understanding of both the topic\n(with salient facts summarized as an open book, also provided with the dataset) and the language it is expressed in. In\nparticular, it contains questions that require multi-step reasoning, use of additional common and commonsense knowledge,\nand rich text comprehension.\nOpenBookQA is a new kind of question-answering dataset modeled after open book exams for assessing human understanding\nof a subject.\n",
|
70 |
+
"citation": "@inproceedings{OpenBookQA2018,\n title={Can a Suit of Armor Conduct Electricity? A New Dataset for Open Book Question Answering},\n author={Todor Mihaylov and Peter Clark and Tushar Khot and Ashish Sabharwal},\n booktitle={EMNLP},\n year={2018}\n}\n",
|
71 |
+
"homepage": "https://allenai.org/data/open-book-qa",
|
72 |
+
"license": "",
|
73 |
+
"features": {
|
74 |
+
"id": {
|
75 |
+
"dtype": "string",
|
76 |
+
"id": null,
|
77 |
+
"_type": "Value"
|
78 |
+
},
|
79 |
+
"question_stem": {
|
80 |
+
"dtype": "string",
|
81 |
+
"id": null,
|
82 |
+
"_type": "Value"
|
83 |
+
},
|
84 |
+
"choices": {
|
85 |
+
"feature": {
|
86 |
+
"text": {
|
87 |
+
"dtype": "string",
|
88 |
+
"id": null,
|
89 |
+
"_type": "Value"
|
90 |
+
},
|
91 |
+
"label": {
|
92 |
+
"dtype": "string",
|
93 |
+
"id": null,
|
94 |
+
"_type": "Value"
|
95 |
+
}
|
96 |
+
},
|
97 |
+
"length": -1,
|
98 |
+
"id": null,
|
99 |
+
"_type": "Sequence"
|
100 |
+
},
|
101 |
+
"answerKey": {
|
102 |
+
"dtype": "string",
|
103 |
+
"id": null,
|
104 |
+
"_type": "Value"
|
105 |
+
},
|
106 |
+
"fact1": {
|
107 |
+
"dtype": "string",
|
108 |
+
"id": null,
|
109 |
+
"_type": "Value"
|
110 |
+
},
|
111 |
+
"humanScore": {
|
112 |
+
"dtype": "float32",
|
113 |
+
"id": null,
|
114 |
+
"_type": "Value"
|
115 |
+
},
|
116 |
+
"clarity": {
|
117 |
+
"dtype": "float32",
|
118 |
+
"id": null,
|
119 |
+
"_type": "Value"
|
120 |
+
},
|
121 |
+
"turkIdAnonymized": {
|
122 |
+
"dtype": "string",
|
123 |
+
"id": null,
|
124 |
+
"_type": "Value"
|
125 |
+
}
|
126 |
+
},
|
127 |
+
"post_processed": null,
|
128 |
+
"supervised_keys": null,
|
129 |
+
"task_templates": null,
|
130 |
+
"builder_name": "openbookqa",
|
131 |
+
"config_name": "additional",
|
132 |
+
"version": {
|
133 |
+
"version_str": "1.0.1",
|
134 |
+
"description": "",
|
135 |
+
"major": 1,
|
136 |
+
"minor": 0,
|
137 |
+
"patch": 1
|
138 |
+
},
|
139 |
+
"splits": {
|
140 |
+
"train": {
|
141 |
+
"name": "train",
|
142 |
+
"num_bytes": 1290473,
|
143 |
+
"num_examples": 4957,
|
144 |
+
"dataset_name": "openbookqa"
|
145 |
+
},
|
146 |
+
"validation": {
|
147 |
+
"name": "validation",
|
148 |
+
"num_bytes": 136141,
|
149 |
+
"num_examples": 500,
|
150 |
+
"dataset_name": "openbookqa"
|
151 |
+
},
|
152 |
+
"test": {
|
153 |
+
"name": "test",
|
154 |
+
"num_bytes": 130926,
|
155 |
+
"num_examples": 500,
|
156 |
+
"dataset_name": "openbookqa"
|
157 |
+
}
|
158 |
+
},
|
159 |
+
"download_checksums": {
|
160 |
+
"https://s3-us-west-2.amazonaws.com/ai2-website/data/OpenBookQA-V1-Sep2018.zip": {
|
161 |
+
"num_bytes": 1446098,
|
162 |
+
"checksum": "82368cf05df2e3b309c17d162e10b888b4d768fad6e171e0a041954c8553be46"
|
163 |
+
}
|
164 |
+
},
|
165 |
+
"download_size": 1446098,
|
166 |
+
"post_processing_size": null,
|
167 |
+
"dataset_size": 1557540,
|
168 |
+
"size_in_bytes": 3003638
|
169 |
+
}
|
170 |
+
}
|
main/test-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cd5483e366daa230c1c87bbdc512d8b7229f14f6dd04d19fc8b1a3855aaaa8a3
|
3 |
+
size 55535
|
main/train-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:98148f8a54e62eb862346a75192d5fb824d6cbb68f2f59aecd793d39ecb5cd8b
|
3 |
+
size 495845
|
main/validation-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:35370b9cfee8c1ff325ccc74adc434d12c47ca0ac3244aa87f3fa77069285206
|
3 |
+
size 58233
|