This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###########Import | |
import keras | |
from keras.callbacks import ModelCheckpoint | |
from keras import models | |
from keras import layers | |
keras.__version__ | |
###########Load MNIST | |
from keras.datasets import mnist | |
from keras.utils import to_categorical |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Cifar-10 classification | |
Original dataset and info: https://www.cs.toronto.edu/~kriz/cifar.html for more information | |
See: https://www.bonaccorso.eu/2016/08/06/cifar-10-image-classification-with-keras-convnet/ for further information | |
''' | |
from __future__ import print_function | |
import numpy as np |
NewerOlder