Conversation
10 tasks
Codecov Report
@@ Coverage Diff @@
## master #6073 +/- ##
======================================
- Coverage 93% 93% -0%
======================================
Files 159 159
Lines 11362 11370 +8
======================================
- Hits 10605 10581 -24
- Misses 757 789 +32 |
SeanNaren
reviewed
Feb 19, 2021
Closed
carmocca
commented
Feb 22, 2021
Co-authored-by: chaton <thomas@grid.ai>
Base automatically changed from
add-checkpoint-to-callback-on_save_checkpoint
to
master
February 25, 2021 15:48
SeanNaren
approved these changes
Mar 2, 2021
justusschock
approved these changes
Mar 3, 2021
tchaton
added a commit
that referenced
this pull request
Mar 9, 2021
… when saved during training (#6073) Co-authored-by: chaton <thomas@grid.ai>
lexierule
pushed a commit
that referenced
this pull request
Mar 9, 2021
… when saved during training (#6073) Co-authored-by: chaton <thomas@grid.ai>
This was referenced Mar 12, 2021
Closed
Closed
[tune](deps): Bump pytorch-lightning from 1.0.3 to 1.2.3 in /python/requirements
sumanthratna/ray#12
Closed
Closed
Closed
Closed
Closed
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What does this PR do?
During training, every time the model is saved via
ModelCheckpoint, ifmake_pruning_permanent, the buffers would get removed. This means that the buffers would not accumulate and the pruning amounts are incorrect.Before submitting
PR review