metadata
license: mit
task_categories:
- text-classification
language:
- en
tags:
- legal
pretty_name: The Street View House Numbers (SVHN) Dataset
size_categories:
- 10K<n<100K
Dataset card for SVHN
The Street View House Numbers (SVHN) dataset serves as a real-world image dataset designed for the development of machine learning and object recognition algorithms, characterized by minimal requirements on data preprocessing and formatting. Similar in essence to MNIST, featuring small cropped digits, SVHN surpasses MNIST by an order of magnitude in labeled data, comprising over 600,000 digit images. Unlike MNIST, SVHN tackles a considerably more challenging and unsolved real-world problem—recognizing digits and numbers within natural scene images. This dataset is derived from house numbers captured in Google Street View images.
Maintenance
GIT_LFS_SKIP_SMUDGE=1 git clone git@hf.co:datasets/MuGeminorum/svhn
Usage
from datasets import load_dataset
dataset = load_dataset("MuGeminorum/svhn")
for item in dataset['train']:
print(item)