svhn_cropped
Stay organized with collections
Save and categorize content based on your preferences.
The Street View House Numbers (SVHN) Dataset is an image digit recognition
dataset of over 600,000 digit images coming from real world data. Images are
cropped to 32x32.
Split |
Examples |
'extra' |
531,131 |
'test' |
26,032 |
'train' |
73,257 |
FeaturesDict({
'id': Text(shape=(), dtype=string),
'image': Image(shape=(32, 32, 3), dtype=uint8),
'label': ClassLabel(shape=(), dtype=int64, num_classes=10),
})
Feature |
Class |
Shape |
Dtype |
Description |
|
FeaturesDict |
|
|
|
id |
Text |
|
string |
|
image |
Image |
(32, 32, 3) |
uint8 |
|
label |
ClassLabel |
|
int64 |
|

"""Street View House Numbers (SVHN) Dataset, cropped version."""
@article{Netzer2011,
author = {Netzer, Yuval and Wang, Tao and Coates, Adam and Bissacco, Alessandro and Wu, Bo and Ng, Andrew Y},
booktitle = {Advances in Neural Information Processing Systems ({NIPS})},
title = {Reading Digits in Natural Images with Unsupervised Feature Learning},
year = {2011}
}
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-11 UTC.
[null,null,["Last updated 2024-12-11 UTC."],[],[],null,["# svhn_cropped\n\n\u003cbr /\u003e\n\n- **Description**:\n\nThe Street View House Numbers (SVHN) Dataset is an image digit recognition\ndataset of over 600,000 digit images coming from real world data. Images are\ncropped to 32x32.\n\n- **Additional Documentation** :\n [Explore on Papers With Code\n north_east](https://paperswithcode.com/dataset/svhn)\n\n- **Homepage** :\n \u003chttp://ufldl.stanford.edu/housenumbers/\u003e\n\n- **Source code** :\n [`tfds.datasets.svhn_cropped.Builder`](https://github.com/tensorflow/datasets/tree/master/tensorflow_datasets/datasets/svhn_cropped/svhn_cropped_dataset_builder.py)\n\n- **Versions**:\n\n - **`3.1.0`** (default): New split API (\u003chttps://tensorflow.org/datasets/splits\u003e)\n- **Download size** : `1.47 GiB`\n\n- **Dataset size** : `1.09 GiB`\n\n- **Auto-cached**\n ([documentation](https://www.tensorflow.org/datasets/performances#auto-caching)):\n No\n\n- **Splits**:\n\n| Split | Examples |\n|-----------|----------|\n| `'extra'` | 531,131 |\n| `'test'` | 26,032 |\n| `'train'` | 73,257 |\n\n- **Feature structure**:\n\n FeaturesDict({\n 'id': Text(shape=(), dtype=string),\n 'image': Image(shape=(32, 32, 3), dtype=uint8),\n 'label': ClassLabel(shape=(), dtype=int64, num_classes=10),\n })\n\n- **Feature documentation**:\n\n| Feature | Class | Shape | Dtype | Description |\n|---------|--------------|-------------|--------|-------------|\n| | FeaturesDict | | | |\n| id | Text | | string | |\n| image | Image | (32, 32, 3) | uint8 | |\n| label | ClassLabel | | int64 | |\n\n- **Supervised keys** (See\n [`as_supervised` doc](https://www.tensorflow.org/datasets/api_docs/python/tfds/load#args)):\n `('image', 'label')`\n\n- **Figure**\n ([tfds.show_examples](https://www.tensorflow.org/datasets/api_docs/python/tfds/visualization/show_examples)):\n\n- **Examples** ([tfds.as_dataframe](https://www.tensorflow.org/datasets/api_docs/python/tfds/as_dataframe)):\n\nDisplay examples... \n\n- **Citation**:\n\n \"\"\"Street View House Numbers (SVHN) Dataset, cropped version.\"\"\"\n\n @article{Netzer2011,\n author = {Netzer, Yuval and Wang, Tao and Coates, Adam and Bissacco, Alessandro and Wu, Bo and Ng, Andrew Y},\n booktitle = {Advances in Neural Information Processing Systems ({NIPS})},\n title = {Reading Digits in Natural Images with Unsupervised Feature Learning},\n year = {2011}\n }"]]