CoolFace
Datasetpublic

Chiranjeev007/SVHN-10_Subset

SVHN (Street View House Numbers) โ€” Subset ๐Ÿ”ข Stratified random subset of SVHN, sourced from ufldl-stanford/svhn. Splits Split Rows Classes Per class train 5,000 10 ~500 test 1,000 10 ~100 validation 500 10 ~50 About SVHN The Street View House Numbers (SVHN) dataset is a real-world digit recognition dataset obtained from Google Street View images. Full train set: 73,257 images Full test set: 26,032 images Extra set: 531,131โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/Chiranjeev007/SVHN-10_Subset.

sourceHugging Faceotherupdated 7mo agoView on Hugging Face
0likes12downloads
Dataset Card

SVHN (Street View House Numbers) โ€” Subset ๐Ÿ”ข

Stratified random subset of SVHN, sourced from ufldl-stanford/svhn.

Splits

SplitRowsClassesPer class
train5,00010~500
test1,00010~100
validation50010~50

About SVHN

The Street View House Numbers (SVHN) dataset is a real-world digit recognition dataset obtained from Google Street View images.

  • โ€”Full train set: 73,257 images
  • โ€”Full test set: 26,032 images
  • โ€”Extra set: 531,131 images (not included in this subset)
  • โ€”Image size: 32 ร— 32 RGB (cropped_digits config)
  • โ€”Classes: 10 digits (0โ€“9)
  • โ€”Config used: cropped_digits โ€” MNIST-like single digit per image

Classes

IDDigitIDDigit
0055
1166
2277
3388
4499

Usage

python
from datasets import load_dataset

ds = load_dataset("Chiranjeev007/SVHN-10_Subset")
print(ds)
# DatasetDict({
#   train:      Dataset(num_rows: 5000),
#   validation: Dataset(num_rows: 500),
#   test:       Dataset(num_rows: 1000)
# })

sample = ds["train"][0]
sample["image"]   # PIL Image 32ร—32 RGB
sample["label"]   # int 0โ€“9

Sampling Details

  • โ€”Method: Stratified random โ€” proportional per class
  • โ€”Seed: 42
  • โ€”Source config: cropped_digits