Sadanto3933 commited on
Commit
db188ee
·
verified ·
1 Parent(s): 9636d1a

Upload 7 files

Browse files
ARC-Challenge/test.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
ARC-Challenge/train.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
ARC-Challenge/validation.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
ARC-Easy/test.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
ARC-Easy/train.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
ARC-Easy/validation.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
README.md CHANGED
@@ -1,3 +1,207 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - found
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license:
9
+ - cc-by-sa-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 1K<n<10K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - question-answering
18
+ task_ids:
19
+ - open-domain-qa
20
+ - multiple-choice-qa
21
+ pretty_name: Ai2Arc
22
+ language_bcp47:
23
+ - en-US
24
+ dataset_info:
25
+ - config_name: ARC-Challenge
26
+ features:
27
+ - name: id
28
+ dtype: string
29
+ - name: question
30
+ dtype: string
31
+ - name: choices
32
+ sequence:
33
+ - name: text
34
+ dtype: string
35
+ - name: label
36
+ dtype: string
37
+ - name: answerKey
38
+ dtype: string
39
+ splits:
40
+ - name: train
41
+ num_bytes: 349760
42
+ num_examples: 1119
43
+ - name: test
44
+ num_bytes: 375511
45
+ num_examples: 1172
46
+ - name: validation
47
+ num_bytes: 96660
48
+ num_examples: 299
49
+ download_size: 449460
50
+ dataset_size: 821931
51
+ - config_name: ARC-Easy
52
+ features:
53
+ - name: id
54
+ dtype: string
55
+ - name: question
56
+ dtype: string
57
+ - name: choices
58
+ sequence:
59
+ - name: text
60
+ dtype: string
61
+ - name: label
62
+ dtype: string
63
+ - name: answerKey
64
+ dtype: string
65
+ splits:
66
+ - name: train
67
+ num_bytes: 619000
68
+ num_examples: 2251
69
+ - name: test
70
+ num_bytes: 657514
71
+ num_examples: 2376
72
+ - name: validation
73
+ num_bytes: 157394
74
+ num_examples: 570
75
+ download_size: 762935
76
+ dataset_size: 1433908
77
+ configs:
78
+ - config_name: ARC-Challenge
79
+ data_files:
80
+ - split: train
81
+ path: ARC-Challenge/train-*
82
+ - split: test
83
+ path: ARC-Challenge/test-*
84
+ - split: validation
85
+ path: ARC-Challenge/validation-*
86
+ - config_name: ARC-Easy
87
+ data_files:
88
+ - split: train
89
+ path: ARC-Easy/train-*
90
+ - split: test
91
+ path: ARC-Easy/test-*
92
+ - split: validation
93
+ path: ARC-Easy/validation-*
94
+ ---
95
+
96
+ # Dataset Card for "ai2_arc"
97
+
98
+ ## Dataset Description
99
+
100
+ - **Homepage:** [https://allenai.org/data/arc](https://allenai.org/data/arc)
101
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
102
+ - **Paper:** [Think you have Solved Question Answering? Try ARC, the AI2 Reasoning Challenge](https://arxiv.org/abs/1803.05457)
103
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
104
+ - **Size of downloaded dataset files:** 1361.68 MB
105
+ - **Size of the generated dataset:** 2.28 MB
106
+ - **Total amount of disk used:** 1363.96 MB
107
+
108
+ ## Usage
109
+
110
+ ```python
111
+ from datasets import load_dataset
112
+
113
+ dataset=load_dataset(
114
+ "Sadanto3933/ai2_arc",
115
+ "ARC-Challenge",
116
+ split="train",
117
+ )
118
+
119
+ # ...
120
+ ```
121
+
122
+
123
+ ### Supported Tasks and Leaderboards
124
+
125
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
126
+
127
+ ### Languages
128
+
129
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
130
+
131
+ ## Dataset Structure
132
+
133
+ ### Data Instances
134
+
135
+ #### ARC-Challenge
136
+
137
+ An example of 'train' looks as follows.
138
+ ```json
139
+ {
140
+ "answerKey": "B",
141
+ "choices": {
142
+ "label": ["A", "B", "C", "D"],
143
+ "text": ["Shady areas increased.", "Food sources increased.", "Oxygen levels increased.", "Available water increased."]
144
+ },
145
+ "id": "Mercury_SC_405487",
146
+ "question": "One year, the oak trees in a park began producing more acorns than usual. The next year, the population of chipmunks in the park also increased. Which best explains why there were more chipmunks the next year?"
147
+ }
148
+ ```
149
+
150
+ #### ARC-Easy
151
+
152
+ - **Size of downloaded dataset files:** 680.84 MB
153
+ - **Size of the generated dataset:** 1.45 MB
154
+ - **Total amount of disk used:** 682.29 MB
155
+
156
+ An example of 'train' looks as follows.
157
+ ```json
158
+ {
159
+ "answerKey": "B",
160
+ "choices": {
161
+ "label": ["A", "B", "C", "D"],
162
+ "text": ["Shady areas increased.", "Food sources increased.", "Oxygen levels increased.", "Available water increased."]
163
+ },
164
+ "id": "Mercury_SC_405487",
165
+ "question": "One year, the oak trees in a park began producing more acorns than usual. The next year, the population of chipmunks in the park also increased. Which best explains why there were more chipmunks the next year?"
166
+ }
167
+ ```
168
+
169
+ ### Data Fields
170
+
171
+ The data fields are the same among all splits.
172
+
173
+ #### ARC-Challenge
174
+ - `id`: a `string` feature.
175
+ - `question`: a `string` feature.
176
+ - `choices`: a dictionary feature containing:
177
+ - `text`: a `string` feature.
178
+ - `label`: a `string` feature.
179
+ - `answerKey`: a `string` feature.
180
+
181
+ #### ARC-Easy
182
+ - `id`: a `string` feature.
183
+ - `question`: a `string` feature.
184
+ - `choices`: a dictionary feature containing:
185
+ - `text`: a `string` feature.
186
+ - `label`: a `string` feature.
187
+ - `answerKey`: a `string` feature.
188
+
189
+ ## Dataset Creation
190
+
191
+ ### Curation Rationale
192
+
193
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
194
+
195
+ ## Citation Information
196
+
197
+ ```
198
+ @article{allenai:arc,
199
+ author = {Peter Clark and Isaac Cowhey and Oren Etzioni and Tushar Khot and
200
+ Ashish Sabharwal and Carissa Schoenick and Oyvind Tafjord},
201
+ title = {Think you have Solved Question Answering? Try ARC, the AI2 Reasoning Challenge},
202
+ journal = {arXiv:1803.05457v1},
203
+ year = {2018},
204
+ }
205
+
206
+ ```
207
+