remove unused variables in cifar10_cnn (#6112)

This commit is contained in:
Wang Cheng 2017-04-02 17:02:35 +02:00 committed by François Chollet
parent 3308778b9d
commit fe48b41c22

@ -20,11 +20,6 @@ num_classes = 10
epochs = 200
data_augmentation = True
# input image dimensions
img_rows, img_cols = 32, 32
# The CIFAR10 images are RGB.
img_channels = 3
# The data, shuffled and split between train and test sets:
(x_train, y_train), (x_test, y_test) = cifar10.load_data()
print('x_train shape:', x_train.shape)