October 2018
Intermediate to advanced
472 pages
10h 57m
English
Again, train the model on the standard 20 epochs:
# fit modelhistory = model.fit(X_train, y_train, epochs = epochs, batch_size=batch_size, validation_data=(X_val, y_val))
The following is the output of the preceding code:

The following is the output at the end of the code's execution:

We see that the convolution classifier with max pooling and dropout is 98.52% accurate on the validation data.
Read now
Unlock full access