Hello,
I recently completed assignment 2 Convolution_model_Application, and I would see for myself how the CNN model in section 4 - The Functional API can predict which number that is on a picture. Therefore I tried to run following:
prediction = conv_model.predict(X_test[0])
print(prediction)
This gave an error and did not work. So, how do I feed the model one single picture (from the test set) and get a prediction?
Regards,
Gustaf