69532/how-to-load-cnn-model-in-keras
Hi Guys,
I have downloaded one CNN model from google. Now I want to load this model to predict the output. How can I load CNN model in keras?
Hi@akhtar,
You can load your pre-created model in keras. For that you have to import one module named load_model. Use the below given code.
from keras.models import load_model model = load_model('name.h5')
Hope this will help.
Hi@akhtar, The general use case is to use ...READ MORE
Hi@akhtar, To save your Machine Learning model, you ...READ MORE
Hi@akhtar, To import one pre-created ML model, you ...READ MORE
Hi@akhtar, You can do this task using numpy ...READ MORE
Hi@akhtar, You are trying to use pre-created weight of ...READ MORE
Hi@akhtar, You may get this error if your ...READ MORE
Hi@akhtar, H5 is a file format to store ...READ MORE
Hello there, With the latest commit and release ...READ MORE
Hi@akhtar, You can save your CNN model in keras. For ...READ MORE
Hi@akhtar, If you stored the complete model, not ...READ MORE
OR
Already have an account? Sign in.