WinoGrande
Collection of 44k problems, inspired by Winograd Schema Challenge
@kaggle.thedevastator_winogrande_a_new_and_improved_reasoning_challeng
Collection of 44k problems, inspired by Winograd Schema Challenge
@kaggle.thedevastator_winogrande_a_new_and_improved_reasoning_challeng
Huggingface Hub: link
WinoGrande is a new collection of 44k problems, inspired by Winograd Schema Challenge (Levesque, Davis, and Morgenstern 2011), but adjusted to improve the scale and robustness against the dataset-specific bias. Formulated as a fill-in-a-blank task with binary options, the goal is to choose the right option for a given sentence which requires commonsense reasoning.
This dataset can be used to train a model to predict which option is the correct one for each sentence.
- Reasoning challenge for AI systems
- Natural language processing task
- Question answering tasks
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: winogrande_xl_train.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_xl_test.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_xs_test.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_xs_train.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_m_train.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_l_validation.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_l_test.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_m_validation.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_m_test.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_debiased_validation.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_s_validation.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_xs_validation.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_l_train.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_debiased_train.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_s_train.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_s_test.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_xl_validation.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
File: winogrande_debiased_test.csv
| Column name | Description |
|---|---|
| sentence | The sentence to be completed. (String) |
| option1 | The first option to complete the sentence. (String) |
| option2 | The second option to complete the sentence. (String) |
| answer | The correct answer for the sentence. (String) |
CREATE TABLE winogrande_debiased_test (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" VARCHAR
);CREATE TABLE winogrande_debiased_train (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_debiased_validation (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_l_test (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" VARCHAR
);CREATE TABLE winogrande_l_train (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_l_validation (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_m_test (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" VARCHAR
);CREATE TABLE winogrande_m_train (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_m_validation (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_s_test (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" VARCHAR
);CREATE TABLE winogrande_s_train (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_s_validation (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_xl_test (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" VARCHAR
);CREATE TABLE winogrande_xl_train (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_xl_validation (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_xs_test (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" VARCHAR
);CREATE TABLE winogrande_xs_train (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);CREATE TABLE winogrande_xs_validation (
"sentence" VARCHAR,
"option1" VARCHAR,
"option2" VARCHAR,
"answer" BIGINT
);Anyone who has the link will be able to view this.