-
Notifications
You must be signed in to change notification settings - Fork 631
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
fixed accessing model.val_dataloader to model.trainer.val_dataloader #758
Conversation
Hmm, looks like accessing dataloaders from We can either change this logic or wait for pytorch-lightning to fix this. |
Bumps [pytorch-lightning](https://github.com/PyTorchLightning/pytorch-lightning) from 1.4.9 to 1.5.2. - [Release notes](https://github.com/PyTorchLightning/pytorch-lightning/releases) - [Changelog](https://github.com/PyTorchLightning/pytorch-lightning/blob/1.5.2/CHANGELOG.md) - [Commits](Lightning-AI/pytorch-lightning@1.4.9...1.5.2) --- updated-dependencies: - dependency-name: pytorch-lightning dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Looks like the team is actively working on it. |
We should be able to fix it by removing the trainer dependency and making the lr scheduler optional, i.e. |
Codecov Report
@@ Coverage Diff @@
## master #758 +/- ##
==========================================
+ Coverage 89.76% 90.01% +0.24%
==========================================
Files 24 24
Lines 3734 3734
==========================================
+ Hits 3352 3361 +9
+ Misses 382 373 -9
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Description
fixing #757
This PR ...
Checklist
pre-commit install
.To run hooks independent of commit, execute
pre-commit run --all-files
Make sure to have fun coding!