-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Weekly Patch Release v.1.2.7 [full merge, no squash] #6850
Weekly Patch Release v.1.2.7 [full merge, no squash] #6850
Conversation
* fix_hydra * update changelog Co-authored-by: Your Name <you@example.com>
* Update Bolts link * Update Bolts link * formt Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
* Update logic for checking TPUs availability * fix flake8 * add fix
…htning-AI#5952) Co-authored-by: rohitgr7 <rohitgr1998@gmail.com> Co-authored-by: Carlos Mocholí <carlossmocholi@gmail.com>
…-AI#6828) * fix iterable dataset len check * update predict and validate * add validate to test * add changelog * add predict
* sanitize none params during pruning * amend
Co-authored-by: Carlos Mocholi <carlossmocholi@gmail.com>
* Fix DPP + SyncBN Ensure that model is already on correct GPU before applying SyncBN conversion * Fix order of SyncBN for ddp_spawn
Hello @kaushikb11! Thanks for updating this PR. There are currently no PEP 8 issues detected in this Pull Request. Cheers! 🍻 Comment last updated at 2021-04-06 19:38:02 UTC |
) * Add test for symlink support and initial fix * Respond to comment and add docstring * Update CHANGELOG.md * Simplify * Update pytorch_lightning/utilities/cloud_io.py Co-authored-by: Carlos Mocholí <carlossmocholi@gmail.com> * Make `LightningLocalFileSystem` protected Co-authored-by: Carlos Mocholí <carlossmocholi@gmail.com>
There seem to be 3 arguments missing in the `lr_find` call in the tunining.py file.
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.
lgtm, just fix tests...
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.
just till tests are fixed 🐰
Codecov Report
@@ Coverage Diff @@
## release/1.2.x #6850 +/- ##
==============================================
- Coverage 91% 88% -4%
==============================================
Files 190 190
Lines 13050 13008 -42
==============================================
- Hits 11923 11406 -517
- Misses 1127 1602 +475 |
@Borda There you go! 🎉 |
Skip advanced profiler for torch > 1.8 Skip pytorch profiler for torch > 1.8 Fix save checkpoint logic for TPUs
@@ -203,12 +203,14 @@ def test_step(self, *args, **kwargs): | |||
def predict(self, *args, **kwargs): | |||
return self.lightning_module.predict(*args, **kwargs) | |||
|
|||
def save_checkpoint(self, checkpoint: Dict[str, Any], filepath: str) -> None: | |||
def save_checkpoint(self, filepath: str, weights_only: bool = False) -> None: |
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.
@tchaton @kaushikb11 where/when we changed this API?
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.
Changed in this PR: 646cf2f
You can use git blame to find the associated PR.
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.
yes I know I just say that the API is different / not back compatible
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.
LGTM ! Great job.
PR review
related to #6083