-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
save weight of the model #35
Comments
I think this article will help you out. |
but it seens work for keras model but it is tensorflow model . |
I believe you can use the principle here. you can use a costume callback for the purpose as well. try tracing these variables: self.weights |
you can add this to model:
To save the model you should call save_model after training. and when you want to use the saved model before the train call the load_model. |
is there anyway to save the trained model?
The text was updated successfully, but these errors were encountered: