-
Notifications
You must be signed in to change notification settings - Fork 26
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
Dev checkpt load #63
Dev checkpt load #63
Conversation
@ASpeiser Have you checked what happens with tensorboard? |
I'm having difficulties generally and often need to restart TB for it to update the data. But when I tried chekpointing it did work fine so I don't think it makes it any worse. |
if debug: | ||
experiment_path.mkdir(exist_ok=True) | ||
else: | ||
experiment_path.mkdir(exist_ok=False) | ||
|
||
model_out = experiment_path / Path('model.pt') | ||
ckpt_path = model_out.parent / Path('ckpt.pt') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ckpt_path should not be hard coded to ckpt.pt relative to the model.
Ckpt_path should be inferred from param.InOut.checkpoint_init (will probably require a bit of logic here).
Hello @ASpeiser! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found:
Comment last updated at 2021-03-18 20:45:25 UTC |
No description provided.