Machine Learning Datasets Machine Learning Datasets
  • GitHub
  • Slack
  • Documentation
Get Started
Machine Learning Datasets Machine Learning Datasets
Get Started
Machine Learning Datasets
  • GitHub
  • Slack
  • Documentation

Docy

Machine Learning Datasets

  • Folder icon closed Folder open iconDatasets
    • MNIST
    • ImageNet Dataset
    • COCO Dataset
    • CIFAR 10 Dataset
    • CIFAR 100 Dataset
    • FFHQ Dataset
    • Places205 Dataset
    • GTZAN Genre Dataset
    • GTZAN Music Speech Dataset
    • The Street View House Numbers (SVHN) Dataset
    • Caltech 101 Dataset
    • LibriSpeech Dataset
    • dSprites Dataset
    • PUCPR Dataset
    • RAVDESS Dataset
    • GTSRB Dataset
    • CSSD Dataset
    • ATIS Dataset
    • Free Spoken Digit Dataset (FSDD)
    • not-MNIST Dataset
    • ECSSD Dataset
    • COCO-Text Dataset
    • CoQA Dataset
    • FGNET Dataset
    • ESC-50 Dataset
    • GlaS Dataset
    • UTZappos50k Dataset
    • Pascal VOC 2012 Dataset
    • Pascal VOC 2007 Dataset
    • Omniglot Dataset
    • HMDB51 Dataset
    • Chest X-Ray Image Dataset
    • NIH Chest X-ray Dataset
    • Fashionpedia Dataset
    • DRIVE Dataset
    • Kaggle Cats & Dogs Dataset
    • Lincolnbeet Dataset
    • Sentiment-140 Dataset
    • MURA Dataset
    • LIAR Dataset
    • Stanford Cars Dataset
    • SWAG Dataset
    • HASYv2 Dataset
    • WFLW Dataset
    • Visdrone Dataset
    • 11k Hands Dataset
    • QuAC Dataset
    • LFW Deep Funneled Dataset
    • LFW Funneled Dataset
    • Office-Home Dataset
    • LFW Dataset
    • PlantVillage Dataset
    • Optical Handwritten Digits Dataset
    • UCI Seeds Dataset
    • STN-PLAD Dataset
    • FER2013 Dataset
    • Adience Dataset
    • PPM-100 Dataset
    • CelebA Dataset
    • Fashion MNIST Dataset
    • Google Objectron Dataset
    • CARPK Dataset
    • CACD Dataset
    • Flickr30k Dataset
    • Kuzushiji-Kanji (KKanji) dataset
    • KMNIST
    • EMNIST Dataset
    • USPS Dataset
    • MARS Dataset
    • HICO Classification Dataset
    • NSynth Dataset
    • RESIDE dataset
    • Electricity Dataset
    • DRD Dataset
    • Caltech 256 Dataset
    • AFW Dataset
    • PACS Dataset
    • TIMIT Dataset
    • KTH Actions Dataset
    • WIDER Face Dataset
    • WISDOM Dataset
    • DAISEE Dataset
    • WIDER Dataset
    • LSP Dataset
    • UCF Sports Action Dataset
    • Wiki Art Dataset
    • FIGRIM Dataset
    • ANIMAL (ANIMAL10N) Dataset
    • OPA Dataset
    • DomainNet Dataset
    • HAM10000 Dataset
    • Tiny ImageNet Dataset
    • Speech Commands Dataset
    • 300w Dataset
    • Food 101 Dataset
    • VCTK Dataset
    • LOL Dataset
    • AQUA Dataset
    • LFPW Dataset
    • ARID Video Action dataset
    • NABirds Dataset
    • SQuAD Dataset
    • ICDAR 2013 Dataset
    • Animal Pose Dataset
  • Folder icon closed Folder open iconDeep Lake Docs Home
  • Folder icon closed Folder open iconDataset Visualization
  • API Basics
  • Storage & Credentials
  • Getting Started
  • Tutorials (w Colab)
  • Playbooks
  • Data Layout
  • Folder icon closed Folder open iconShuffling in ds.pytorch()
  • Folder icon closed Folder open iconStorage Synchronization
  • Folder icon closed Folder open iconTensor Relationships
  • Folder icon closed Folder open iconQuickstart
  • Folder icon closed Folder open iconHow to Contribute

SQuAD Dataset

Estimated reading: 3 minutes

What is SQuAD Dataset?

The SQuAD(Stanford Question Answering Dataset) dataset consists of 100,000 questions with over 50,000 unanswerable questions and additionally assesses a system’s capacity to not only answer reading comprehension questions but also to refrain from answering a question that cannot be answered based on the given paragraph.

Download SQuAD Dataset in Python

Instead of downloading the SQuAD dataset in Python, you can effortlessly load it in Python via our Deep Lake open-source with just one line of code.

Load SQuAD Dataset Training Subset in Python

				
					import deeplake
ds = deeplake.load('hub://activeloop/squad-train')
				
			

Load SQuAD Dataset Validation Subset in Python

				
					import deeplake
ds = deeplake.load('hub://activeloop/squad-val')
				
			

SQuAD Dataset Structure

SQuAD Data Fields
  • id: tensor containing article id.
  • title: tensor containing the title.
  • context: tensor containing a context from the article.
  • question: tensor containing the question
  • text: tensor containing the text
  • answer_start: tensor that contains the starting index of the answer.
  • is_impossible: A label that represents whether answering is possible or impossible. If it is impossible, the label represents the value 1 for True. If not impossible label represents the value o for False.
SQuAD Data Splits
  • The SQuAD dataset training set is composed of 86821 samples.
  • The SQuAD dataset validation set is composed of 20302 samples.

How to use SQuAD Dataset with PyTorch and TensorFlow in Python

Train a model on SQuAD dataset with PyTorch in Python

Let’s use Deep Lake built-in PyTorch one-line dataloader to connect the data to the compute:

				
					dataloader = ds.pytorch(num_workers=0, batch_size=4, shuffle=False)
				
			
Train a model on the SQuAD dataset with TensorFlow in Python
				
					dataloader = ds.tensorflow()
				
			

SQuAD Dataset Creation

Data Collection and Normalization Information

Up to five questions that were impossible to answer based on each paragraph alone were written with the help of crowd workers, referring entities in the paragraph and ensuring that a credible response could be found from the entire SQuAD 1.1 text. Those questions from workers who didn’t understand the task in that article were screened to reduce noise. The train, development, and test splits were constructed using the same article division as SQuAD 1.1, with each split integrating old and new data and eliminating articles containing unanswerable questions. For SQuAD 2.0, the ratio of answerable to unanswerable questions in these splits is around one-to-one, whereas train data has roughly twice as many answerable as unanswerable questions.

Additional Information about the SQuAD Dataset

SQuAD Dataset Description

  • Homepage: https://rajpurkar.github.io/SQuAD-explorer/
  • Paper: https://arxiv.org/pdf/1806.03822.pdf
  • Point of Contact: [email protected], https://groups.google.com/forum/#!forum/squad-stanford-qa
SQuAD Dataset Curators

Pranav Rajpurkar, Robin Jia, Percy Liang

SQuAD Dataset Licensing Information

CC BY-SA 4.0

SQuAD Dataset Citation Information
				
					@article{rajpurkar2018know,
title={Know what you don't know: Unanswerable questions for SQuAD},
author={Rajpurkar, Pranav and Jia, Robin and Liang, Percy},
journal={arXiv preprint arXiv:1806.03822},
year={2018}
}
				
			
Datasets - Previous NABirds Dataset Next - Datasets ICDAR 2013 Dataset
Leaf Illustration

© 2022 All Rights Reserved by Snark AI, inc dba Activeloop