-
Notifications
You must be signed in to change notification settings - Fork 709
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
Bump up PyTorch Lightning version to v1.9.* #870
Merged
samet-akcay
merged 39 commits into
main
from
refactor/sa/bump-up-pytorch-lightning-version
Feb 7, 2023
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
03706f1
Modified padim configs
samet-akcay 4a78ed4
Removed registry
samet-akcay ce24236
Replace LightningLoggerBase with Logger
samet-akcay b2212ce
Remove resume_from_checkpoint arg from Trainer
samet-akcay a7125aa
Updated cfa configs for v1.9.0
samet-akcay 6b31c31
Udate cflow configs to run on v1.9.0
samet-akcay 630ecae
Udate csflow configs to run on v1.9.0
samet-akcay 06dd989
Udate dfkde configs to run on v1.9.0
samet-akcay 090718d
Udate dfm configs to run on v1.9.0
samet-akcay 7b4925f
Udate draem configs to run on v1.9.0
samet-akcay 303a1d2
Udpdate fasatflow configs to run on v1.9.0
samet-akcay 12665a5
Udpdate ganomaly configs to run on v1.9.0
samet-akcay cfb469b
Udpdate patchcore configs to run on v1.9.0
samet-akcay ed46a1b
Udpdate reverse_distillation configs to run on v1.9.0
samet-akcay e055285
Udpdate rkde configs to run on v1.9.0
samet-akcay dfc0c18
Udpdate stfpm configs to run on v1.9.0
samet-akcay 251f1f8
Update CHANGELOG.md
samet-akcay 6b97d11
Remove `inference_mode` from the configs to support PyTorch Lightning…
samet-akcay 4502077
Merge branch 'refactor/sa/bump-up-pytorch-lightning-version' of githu…
samet-akcay c9c897e
resolve the merge conflict in changelog document
samet-akcay 8b78855
Update CHANGELOG.md
samet-akcay 9427454
Merge branch 'main' of github.com:openvinotoolkit/anomalib into refac…
samet-akcay ccb31f1
Merge branch 'main' of github.com:openvinotoolkit/anomalib into refac…
samet-akcay c216835
Address pre-commit issues
samet-akcay 97a7a6c
Address pre-commit issues
samet-akcay 6334623
PL v1.6.* is not supported anymore
samet-akcay 9894fa9
Ignore no-member issue when getting trainer.callbacks
samet-akcay 97b8e19
Resolved merge conflicts
samet-akcay afa80a6
Added requirements to pre-commit
samet-akcay 71be75c
Resolve merge conflicts properly
samet-akcay 9eed6d1
Revert the changes in tox.ini
samet-akcay bf2e6e7
Address pre-commit errors
samet-akcay 3e8b432
Address pylint comments from pre-commit
samet-akcay 6704e2e
Address pylint comments from pre-commit. - This is the final one!!
samet-akcay 4cf542e
Fix tests. Tensorboard logger has not been addressed yet.
samet-akcay 6386338
🩹 Patch requirements (#892)
ashwinvaidya17 15b4f2e
Merge branch 'main' of github.com:openvinotoolkit/anomalib into refac…
samet-akcay b6b730f
replace in-place torch operations in Denormalize
samet-akcay b1f52b6
Merge branch 'refactor/sa/bump-up-pytorch-lightning-version' of githu…
samet-akcay File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
Do these new parameters also work with 1.6.x or are they only for versions greater than 1.7.0
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.
Great question, haven't checked 🙃
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.
@ashwinvaidya17, the only parameter that PyTorch Lightning v1.6.* does not support was
inference_mode
. Since we do not use it anywhere in the code base yet, I've removed it from the configs and confirmed that the changes are backward-compatible.