Search notes:

Keras datasets

Find available datasets

import tensorflow.keras.datasets as ds
[_ for _ in dir(ds) if not x.startswith('_') ]
…
help(ds.mnist)
boston_housing Boston housing price regression dataset.
cifar10 CIFAR10 small images classification dataset
cifar100 CIFAR100 small images classification dataset
fashion_mnist Fashion-MNIST dataset
imdb IMDB sentiment classification dataset
mnist MNIST handwritten digits dataset, see also here.
reuters Reuters topic classification dataset

Index