I recently got started with neural networks. I built a handwritten character prediction model using the extended MNIST dataset, sklearn, Keras, numpy and pandas. The main goal is to take and/or upload pictures of handwritten text/characters and the model should be able to guess.
After finishing the training phase, the model was saved in the file my_model.h5. At this point, how could I use this trained model (specifically, the my_model.h5) in a Python program that receives as input images and should produce a prediction?