Think you have Solved Question Answering? Try ARC, the AI2 Reasoning Challenge
Paper
•
1803.05457
•
Published
•
3
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
from datasets import load_dataset
dataset=load_dataset(
"Sadanto3933/ai2_arc",
"ARC-Challenge",
split="train",
)
# ...
An example of 'train' looks as follows.
{
"answerKey": "B",
"choices": {
"label": ["A", "B", "C", "D"],
"text": ["Shady areas increased.", "Food sources increased.", "Oxygen levels increased.", "Available water increased."]
},
"id": "Mercury_SC_405487",
"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?"
}
An example of 'train' looks as follows.
{
"answerKey": "B",
"choices": {
"label": ["A", "B", "C", "D"],
"text": ["Shady areas increased.", "Food sources increased.", "Oxygen levels increased.", "Available water increased."]
},
"id": "Mercury_SC_405487",
"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?"
}
The data fields are the same among all splits.
id: a string feature.question: a string feature.choices: a dictionary feature containing:text: a string feature.label: a string feature.answerKey: a string feature.id: a string feature.question: a string feature.choices: a dictionary feature containing:text: a string feature.label: a string feature.answerKey: a string feature.@article{allenai:arc,
author = {Peter Clark and Isaac Cowhey and Oren Etzioni and Tushar Khot and
Ashish Sabharwal and Carissa Schoenick and Oyvind Tafjord},
title = {Think you have Solved Question Answering? Try ARC, the AI2 Reasoning Challenge},
journal = {arXiv:1803.05457v1},
year = {2018},
}