This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# import load_model | |
from tensorflow.keras.models import load_model | |
# give the path to model directory to load the model | |
loaded_model = load_model('my_model/1/') | |
# predict function to predict the probabilities for each class 0-9 | |
loaded_model.predict(test_images[0:1]) | |
# predict_classes to get the class with highest probability | |
loaded_model.predict_classes(test_images[0:1]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment