-
Notifications
You must be signed in to change notification settings - Fork 43
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
Get checkpoint based on create time is probably not a good idea #331
Comments
In a nutshell, resumption from an existing checkpoint using API tools is still not working/clean. Works just fine with the tf inbuilt |
Also see #332 |
appending |
In hindsight, we should include 'BackupAndRestore' in addition to |
ouch keras-team/tf-keras#430. Looks like, we will have to stay put with ModelCheckPoint for now. 😞 This is because I intend to save the best model as well. |
nobrainer/nobrainer/processing/checkpoint.py
Line 57 in 976691d
What am I trying to do?
Initialize from a previous checkpoint, to resume training over more epochs.
For example, the following snippet
should initialize from a checkpoint if the
checkpoint_filepath
exists. However, thegetctime
part conflicts with other folders created during training (could be predictions or other folders).Solution:
The text was updated successfully, but these errors were encountered: