This repository was archived by the owner on Mar 14, 2024. It is now read-only.
Checkpoint Learning Stats#78
Closed
chandlerzuo wants to merge 1 commit intofacebookresearch:masterfrom
Closed
Conversation
3fd47e7 to
dd7ab18
Compare
chandlerzuo
added a commit
to chandlerzuo/PyTorch-BigGraph
that referenced
this pull request
Aug 14, 2019
Summary: Pull Request resolved: facebookresearch#78 Currently, when resuming from a failed training, learning curve stats history is lost. This diff adds the learning curve stats in the checkpoint file. Differential Revision: D15977931 fbshipit-source-id: 8b562a540a6ebb5354f824f8bdf59767c8525505
chandlerzuo
added a commit
to chandlerzuo/PyTorch-BigGraph
that referenced
this pull request
Sep 12, 2019
Summary: Pull Request resolved: facebookresearch#78 Currently, when resuming from a failed training, learning curve stats history is lost. This diff adds the learning curve stats in the checkpoint file. Differential Revision: D15977931 fbshipit-source-id: bb28d9342f52640df9d6478aa979e666825d0c67
dd7ab18 to
785964a
Compare
chandlerzuo
added a commit
to chandlerzuo/PyTorch-BigGraph
that referenced
this pull request
Sep 13, 2019
Summary: Pull Request resolved: facebookresearch#78 Currently, when resuming from a failed training, learning curve stats history is lost. This diff adds the learning curve stats in the checkpoint file. Reviewed By: lerks Differential Revision: D15977931 fbshipit-source-id: d32c7d758cb03a742ed04999a1c169aec620e75f
785964a to
5b65a2e
Compare
chandlerzuo
added a commit
to chandlerzuo/PyTorch-BigGraph
that referenced
this pull request
Sep 13, 2019
Summary: Pull Request resolved: facebookresearch#78 Currently, when resuming from a failed training, learning curve stats history is lost. This diff adds the learning curve stats in the checkpoint file. Reviewed By: lerks Differential Revision: D15977931 fbshipit-source-id: 39308d85efe8f0921231f58b2f96747732a169a0
5b65a2e to
db48ae7
Compare
Summary: Pull Request resolved: facebookresearch#78 Currently, when resuming from a failed training, learning curve stats history is lost. This diff adds the learning curve stats in the checkpoint file. Reviewed By: lerks Differential Revision: D15977931 fbshipit-source-id: 1427f447ee388ec38d8aa49f6b568acbc1a8f4d4
db48ae7 to
548a6a3
Compare
Contributor
|
This pull request has been merged in f0dd9a4. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary:
Currently, when resuming from failed training, learning curve stats history is lost. This is because in learning stats are saved in a temporary path, which is not picked up by the resumed run.
This diff adds the learning curve stats in the checkpoint file, which is picked up by the resumed run.
Differential Revision: D15977931