69666/how-to-save-cnn-model-in-keras
Hi Guys,
I created one CNN model and it works fine. I want to save this model so that I can use this in future. How can I do that?
Hi@akhtar,
You can save your CNN model in keras. For that you have to import one module named save_model. Use the below given code to do this task.
from keras.models import save_model model = save_model(model,'/path/name.h5')
Hope this will help.
Hi@akhtar, To save your Machine Learning model, you ...READ MORE
Hi@akhtar, Classifiers are just objects that can be ...READ MORE
Hi@akhtar, The general use case is to use ...READ MORE
There is no definitive solution to this ...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 load your pre-created model in ...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.