SciQ (Scientific Question Answering)
Question & Answering on scientific topics
@kaggle.thedevastator_sciq_a_dataset_for_science_question_answering
Question & Answering on scientific topics
@kaggle.thedevastator_sciq_a_dataset_for_science_question_answering
Huggingface Hub: link
The SciQ dataset contains 13,679 crowdsourced science exam questions about Physics, Chemistry and Biology, among others. The questions are in multiple-choice format with 4 answer options each. For the majority of the questions, an additional paragraph with supporting evidence for the correct answer is provided.
This dataset consists of science questions and their corresponding distractors, correct answers, and supports. The questions are designed to evaluate a person's knowledge of science. The distractors are designed to confuse the test taker and lead them away from the correct answer. The correct answers are provided so that the test taker can check their work. The supports are designed to help the test taker understand the question and find the correct answer
- Train a model to answer scientific questions
License
> License: CC0 1.0 Universal (CC0 1.0) - Public Domain Dedication
> No Copyright - You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information.
File: validation.csv
| Column name | Description |
|---|---|
| question | The question text. (String) |
| distractor3 | One of the distractors for the question. (String) |
| distractor1 | One of the distractors for the question. (String) |
| distractor2 | One of the distractors for the question. (String) |
| correct_answer | The correct answer for the question. (String) |
| support | The supporting text for the question. (String) |
File: train.csv
| Column name | Description |
|---|---|
| question | The question text. (String) |
| distractor3 | One of the distractors for the question. (String) |
| distractor1 | One of the distractors for the question. (String) |
| distractor2 | One of the distractors for the question. (String) |
| correct_answer | The correct answer for the question. (String) |
| support | The supporting text for the question. (String) |
File: test.csv
| Column name | Description |
|---|---|
| question | The question text. (String) |
| distractor3 | One of the distractors for the question. (String) |
| distractor1 | One of the distractors for the question. (String) |
| distractor2 | One of the distractors for the question. (String) |
| correct_answer | The correct answer for the question. (String) |
| support | The supporting text for the question. (String) |
CREATE TABLE test (
"question" VARCHAR,
"distractor3" VARCHAR,
"distractor1" VARCHAR,
"distractor2" VARCHAR,
"correct_answer" VARCHAR,
"support" VARCHAR
);CREATE TABLE train (
"question" VARCHAR,
"distractor3" VARCHAR,
"distractor1" VARCHAR,
"distractor2" VARCHAR,
"correct_answer" VARCHAR,
"support" VARCHAR
);CREATE TABLE validation (
"question" VARCHAR,
"distractor3" VARCHAR,
"distractor1" VARCHAR,
"distractor2" VARCHAR,
"correct_answer" VARCHAR,
"support" VARCHAR
);Anyone who has the link will be able to view this.