October 2018
Intermediate to advanced
472 pages
10h 57m
English
Fit the convolution neural network model on the data with the following code:
# 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 from the end of the code's execution:

We can see that the convolution classifier's accuracy is 97.72% on the validation data.
Read now
Unlock full access