-
Notifications
You must be signed in to change notification settings - Fork 323
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
Continue training? #13
Comments
Use |
Sorry, but I'm new and I'm not really familiar with Keras. My question is, is the REAL.hdf5 the same thing as the weight generated during each checkpoint? Is it any different with files generated by |
Real.hdf5 is a name of MODEL, note weight. That's just the name of the model. And the code My code now looks like `#保存とする調整
|
Thanks to @Utayaki . I was hit wit hthe same problem last night. Following the hint from @Utayaki , this is how I solved it.
This enabled me to save the model as "Real.hdf5". When the # of epochs runs completes. Copy "Real.hdf5" as "weights.hdf5" and run "python3 predict.py" to generate the output knowing the cost functions reflecting the error rate. Closer to ZERO provides a better result. If you want to continue the training, just restart by running "python3 lstm.py". good luck! |
Made a pull request for this: #26 |
I am using linux and my everytime i run the code it starts the training all over from the beginning. How do i continue training?
The text was updated successfully, but these errors were encountered: