Neural Network

I have paid more time to get my knowledge closer to the AI field.

And these are my study notes.


RusNOTEs 4 years, 5 months ago

Keras Build-in Datasets

The tf.keras.datasets module provide a few toy datasets (already-vectorized, in Numpy format) that can be used for debugging a model or creating simple code examples.

  • MNIST digits classification dataset
  • CIFAR10 small images classification dataset
  • CIFAR100 small images classification dataset
  • IMDB movie review sentiment classification dataset
  • Reuters newswire classification dataset
  • Fashion MNIST dataset, an alternative to MNIST
  • Boston Housing price regression dataset


RusNOTEs 4 years, 7 months ago