-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Update anomalib, fix classification model checkpoint load (#120)
* build: Upgrade version, add anomalib rc * feat: Add a way to load pretrained checkpoints * build: Update anomalib version * build: Remove prepatch tag * docs: Update changelog
- Loading branch information
1 parent
7c4aa31
commit 922621d
Showing
5 changed files
with
35 additions
and
8 deletions.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "quadra" | ||
version = "2.1.8" | ||
version = "2.1.9" | ||
description = "Deep Learning experiment orchestration library" | ||
authors = [ | ||
"Federico Belotti <[email protected]>", | ||
|
@@ -77,7 +77,7 @@ h5py = "~3.8" | |
timm = "0.9.12" | ||
# Right now only this ref supports timm 0.9.12 | ||
segmentation_models_pytorch = { git = "https://github.com/qubvel/segmentation_models.pytorch", rev = "7b381f899ed472a477a89d381689caf535b5d0a6" } | ||
anomalib = { git = "https://github.com/orobix/anomalib.git", tag = "v0.7.0+obx.1.3.2" } | ||
anomalib = { git = "https://github.com/orobix/anomalib.git", tag = "v0.7.0+obx.1.3.3" } | ||
xxhash = "~3.2" | ||
torchinfo = "~1.8" | ||
typing_extensions = { version = "4.11.0", python = "<3.10" } | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "2.1.8" | ||
__version__ = "2.1.9" | ||
|
||
|
||
def get_version(): | ||
|
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