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
There is no definitive solution to this ...READ MORE
Using the concept of comorbidities is a ...READ MORE
Hi@akhtar, To save your Machine Learning model, you ...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
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.