October 2018
Intermediate to advanced
472 pages
10h 57m
English
Now, let's fit the model on the data:
# 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 can see that the convolution classifier with max pooling has an accuracy of 97.72% on the validation data.
Read now
Unlock full access