svhn / README.md
Monet Joe
Update README.md
ab8f1c6
|
raw
history blame
No virus
1.26 kB
---
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
```bash
GIT_LFS_SKIP_SMUDGE=1 git clone git@hf.co:datasets/MuGeminorum/svhn
```
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("MuGeminorum/svhn")
for item in dataset['train']:
print(item)
```
## Mirror
<https://www.modelscope.cn/datasets/MuGeminorum/svhn>
## Reference
<a href="http://ufldl.stanford.edu/housenumbers">The Street View House Numbers (SVHN) Dataset</a>