keras/examples/mnist_irnn.py

88 lines
3.0 KiB
Python
Raw Normal View History

2015-07-01 23:55:06 +00:00
from __future__ import absolute_import
from __future__ import print_function
import numpy as np
np.random.seed(1337) # for reproducibility
from keras.datasets import mnist
from keras.models import Sequential
from keras.layers.core import Dense, Activation
from keras.initializations import normal, identity
2015-07-02 22:21:37 +00:00
from keras.layers.recurrent import SimpleRNN, LSTM
2015-07-01 23:55:06 +00:00
from keras.optimizers import RMSprop
from keras.utils import np_utils
'''
2015-07-07 05:22:25 +00:00
This is a reproduction of the IRNN experiment
2015-07-02 22:21:37 +00:00
with pixel-by-pixel sequential MNIST in
2015-07-01 23:55:06 +00:00
"A Simple Way to Initialize Recurrent Networks of Rectified Linear Units "
by Quoc V. Le, Navdeep Jaitly, Geoffrey E. Hinton
arXiv:1504.00941v2 [cs.NE] 7 Apr 201
http://arxiv.org/pdf/1504.00941v2.pdf
2015-07-05 22:04:20 +00:00
Optimizer is replaced with RMSprop which yields more stable and steady
2015-07-01 23:55:06 +00:00
improvement.
2015-07-07 05:22:25 +00:00
Reaches 0.93 train/test accuracy after 900 epochs (which roughly corresponds
to 1687500 steps in the original paper.)
2015-07-01 23:55:06 +00:00
'''
2015-07-02 22:21:37 +00:00
batch_size = 32
2015-07-01 23:55:06 +00:00
nb_classes = 10
2015-07-02 00:02:27 +00:00
nb_epochs = 200
2015-07-01 23:55:06 +00:00
hidden_units = 100
learning_rate = 1e-6
clip_norm = 1.0
2015-07-02 22:21:37 +00:00
BPTT_truncate = 28*28
2015-07-01 23:55:06 +00:00
2015-07-02 22:21:37 +00:00
# the data, shuffled and split between train and test sets
2015-07-01 23:55:06 +00:00
(X_train, y_train), (X_test, y_test) = mnist.load_data()
X_train = X_train.reshape(X_train.shape[0], -1, 1)
X_test = X_test.reshape(X_test.shape[0], -1, 1)
X_train = X_train.astype("float32")
X_test = X_test.astype("float32")
X_train /= 255
X_test /= 255
print('X_train shape:', X_train.shape)
print(X_train.shape[0], 'train samples')
print(X_test.shape[0], 'test samples')
# convert class vectors to binary class matrices
Y_train = np_utils.to_categorical(y_train, nb_classes)
Y_test = np_utils.to_categorical(y_test, nb_classes)
2015-07-02 22:21:37 +00:00
print('Evaluate IRNN...')
2015-07-01 23:55:06 +00:00
model = Sequential()
model.add(SimpleRNN(input_dim=1, output_dim=hidden_units,
init=lambda shape: normal(shape, scale=0.001),
inner_init=lambda shape: identity(shape, scale=1.0),
2015-07-02 22:21:37 +00:00
activation='relu', truncate_gradient=BPTT_truncate))
model.add(Dense(hidden_units, nb_classes))
model.add(Activation('softmax'))
rmsprop = RMSprop(lr=learning_rate)
model.compile(loss='categorical_crossentropy', optimizer=rmsprop)
2015-07-07 05:22:25 +00:00
model.fit(X_train, Y_train, batch_size=batch_size, nb_epoch=nb_epochs,
2015-07-02 22:21:37 +00:00
show_accuracy=True, verbose=1, validation_data=(X_test, Y_test))
scores = model.evaluate(X_test, Y_test, show_accuracy=True, verbose=0)
print('IRNN test score:', scores[0])
print('IRNN test accuracy:', scores[1])
print('Compare to LSTM...')
model = Sequential()
model.add(LSTM(1, hidden_units))
2015-07-01 23:55:06 +00:00
model.add(Dense(hidden_units, nb_classes))
model.add(Activation('softmax'))
rmsprop = RMSprop(lr=learning_rate)
model.compile(loss='categorical_crossentropy', optimizer=rmsprop)
2015-07-07 05:22:25 +00:00
model.fit(X_train, Y_train, batch_size=batch_size, nb_epoch=nb_epochs,
2015-07-01 23:55:06 +00:00
show_accuracy=True, verbose=1, validation_data=(X_test, Y_test))
2015-07-02 22:21:37 +00:00
scores = model.evaluate(X_test, Y_test, show_accuracy=True, verbose=0)
print('LSTM test score:', scores[0])
2015-07-07 05:22:25 +00:00
print('LSTM test accuracy:', scores[1])