svhn_cropped

  • 説明:

Street View House Numbers (SVHN) データセットは、実世界のデータから得られた 600,000 を超える数字画像の画像数字認識データセットです。画像は 32x32 にトリミングされます。

スプリット
'extra' 531,131
'test' 26,032
'train' 73,257
  • 機能構造:
FeaturesDict({
    'image': Image(shape=(32, 32, 3), dtype=uint8),
    'label': ClassLabel(shape=(), dtype=int64, num_classes=10),
})
  • 機能のドキュメント:
特徴クラスDtype説明
特徴辞書
画像画像(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}
}