Up the batch size in MNIST example

This commit is contained in:
fchollet 2015-06-19 12:52:43 -07:00
parent d550232458
commit 06f22db69a

@ -13,7 +13,7 @@ import numpy as np
Train a simple deep NN on the MNIST dataset. Train a simple deep NN on the MNIST dataset.
''' '''
batch_size = 64 batch_size = 128
nb_classes = 10 nb_classes = 10
nb_epoch = 20 nb_epoch = 20