svhn_切り抜き
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
ストリート ビュー住宅番号 (SVHN) データセットは、実世界のデータから得られる 600,000 を超える数字画像からなる画像数字認識データセットです。画像は 32x32 にトリミングされます。
スプリット | 例 |
---|
'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),
})
特徴 | クラス | 形 | Dタイプ | 説明 |
---|
| 特徴辞書 | | | |
ID | 文章 | | 弦 | |
画像 | 画像 | (32、32、3) | uint8 | |
ラベル | クラスラベル | | 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}
}
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-12-18 UTC。
[null,null,["最終更新日 2024-12-18 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 }"]]