squadshifts / README.md
system's picture
system HF staff
Update files from the datasets library (from 1.4.0)
4d2abcd


Dataset Card for "squadshifts"

Table of Contents

Dataset Description

Dataset Summary

SquadShifts consists of four new test sets for the Stanford Question Answering Dataset (SQuAD) from four different domains: Wikipedia articles, New York
Times articles, Reddit comments, and Amazon product reviews. Each dataset was generated using the same data generating pipeline, Amazon Mechanical Turk interface, and data cleaning code as the original SQuAD v1.1 dataset. The "new-wikipedia" dataset measures overfitting on the original SQuAD v1.1 dataset. The "new-york-times", "reddit", and "amazon" datasets measure robustness to natural distribution shifts. We encourage SQuAD model developers to also evaluate their methods on these new datasets!

Supported Tasks

More Information Needed

Languages

More Information Needed

Dataset Structure

We show detailed information for up to 5 configurations of the dataset.

Data Instances

amazon

  • Size of downloaded dataset files: 15.74 MB
  • Size of the generated dataset: 9.00 MB
  • Total amount of disk used: 24.74 MB

An example of 'test' looks as follows.

{
    "answers": {
        "answer_start": [25],
        "text": ["amazon"]
    },
    "context": "This is a paragraph from amazon.",
    "id": "090909",
    "question": "Where is this paragraph from?",
    "title": "amazon dummy data"
}

new_wiki

  • Size of downloaded dataset files: 15.74 MB
  • Size of the generated dataset: 7.50 MB
  • Total amount of disk used: 23.24 MB

An example of 'test' looks as follows.

{
    "answers": {
        "answer_start": [25],
        "text": ["wikipedia"]
    },
    "context": "This is a paragraph from wikipedia.",
    "id": "090909",
    "question": "Where is this paragraph from?",
    "title": "new_wiki dummy data"
}

nyt

  • Size of downloaded dataset files: 15.74 MB
  • Size of the generated dataset: 10.29 MB
  • Total amount of disk used: 26.03 MB

An example of 'test' looks as follows.

{
    "answers": {
        "answer_start": [25],
        "text": ["new york times"]
    },
    "context": "This is a paragraph from new york times.",
    "id": "090909",
    "question": "Where is this paragraph from?",
    "title": "nyt dummy data"
}

reddit

  • Size of downloaded dataset files: 15.74 MB
  • Size of the generated dataset: 9.03 MB
  • Total amount of disk used: 24.77 MB

An example of 'test' looks as follows.

{
    "answers": {
        "answer_start": [25],
        "text": ["reddit"]
    },
    "context": "This is a paragraph from reddit.",
    "id": "090909",
    "question": "Where is this paragraph from?",
    "title": "reddit dummy data"
}

Data Fields

The data fields are the same among all splits.

amazon

  • id: a string feature.
  • title: a string feature.
  • context: a string feature.
  • question: a string feature.
  • answers: a dictionary feature containing:
    • text: a string feature.
    • answer_start: a int32 feature.

new_wiki

  • id: a string feature.
  • title: a string feature.
  • context: a string feature.
  • question: a string feature.
  • answers: a dictionary feature containing:
    • text: a string feature.
    • answer_start: a int32 feature.

nyt

  • id: a string feature.
  • title: a string feature.
  • context: a string feature.
  • question: a string feature.
  • answers: a dictionary feature containing:
    • text: a string feature.
    • answer_start: a int32 feature.

reddit

  • id: a string feature.
  • title: a string feature.
  • context: a string feature.
  • question: a string feature.
  • answers: a dictionary feature containing:
    • text: a string feature.
    • answer_start: a int32 feature.

Data Splits Sample Size

name test
amazon 9885
new_wiki 7938
nyt 10065
reddit 9803

Dataset Creation

Curation Rationale

More Information Needed

Source Data

More Information Needed

Annotations

More Information Needed

Personal and Sensitive Information

More Information Needed

Considerations for Using the Data

Social Impact of Dataset

More Information Needed

Discussion of Biases

More Information Needed

Other Known Limitations

More Information Needed

Additional Information

Dataset Curators

More Information Needed

Licensing Information

More Information Needed

Citation Information

@inproceedings{miller2020effect,
  author = {J. Miller and K. Krauth and B. Recht and L. Schmidt},
  booktitle = {International Conference on Machine Learning (ICML)},
  title = {The Effect of Natural Distribution Shift on Question Answering Models},
  year = {2020},
}

Contributions

Thanks to @thomwolf, @lewtun, @millerjohnp, @albertvillanova for adding this dataset.