-
Notifications
You must be signed in to change notification settings - Fork 23
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
add GetBestPtCheckpointJob #432
Conversation
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.
I think for PyTorch we can simplify this a little bit more
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.
I think for PyTorch we can simplify this a little bit more
Right. In this case, the code duplication is also reduced, so we can just add the torch specific job imho. |
We have the
GetBestTFCheckpointJob
and I'd like to add the equivalent for torch checkpoints. I added a very similarGetBestPtCheckpointJob
since this does not interfere with existing setups. We might also think about how to avoid some of the code duplications, but this seems to be the simplest solution.