svhn_cropped

  • Descripción :

El conjunto de datos Street View House Numbers (SVHN) es un conjunto de datos de reconocimiento de dígitos de imágenes de más de 600.000 imágenes de dígitos procedentes de datos del mundo real. Las imágenes se recortan a 32x32.

Dividir Ejemplos
'extra' 531,131
'test' 26.032
'train' 73.257
  • Estructura de características :
FeaturesDict({
    'id': Text(shape=(), dtype=string),
    'image': Image(shape=(32, 32, 3), dtype=uint8),
    'label': ClassLabel(shape=(), dtype=int64, num_classes=10),
})
  • Documentación de funciones :
Característica Clase Forma tipo D Descripción
FuncionesDict
identificación Texto cadena
imagen Imagen (32, 32, 3) uint8
etiqueta Etiqueta de clase int64

Visualización

  • Cita :
"""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}
}