-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #172 from XAITK/update-t-v0.12.0
Update to v0.12.0
- Loading branch information
Showing
8 changed files
with
491 additions
and
19 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,4 @@ Release Notes | |
release_notes/v0.9.2 | ||
release_notes/v0.10.0 | ||
release_notes/v0.11.0 | ||
release_notes/v0.12.0 |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
v0.12.0 | ||
======= | ||
|
||
Bug fix for ``MC-RISE`` when threading is utilized, plus exemplar notebook demonstrating its use. | ||
|
||
Updates / New Features | ||
---------------------- | ||
|
||
Examples | ||
|
||
* Added the ``MC-RISE`` example notebook that demonstrates the MC-RISE saliency | ||
algorithm on a sample image from the GTSRB dataset. | ||
|
||
Fixes | ||
----- |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -26,7 +26,7 @@ classifiers = [ | |
# :auto package-meta: | ||
# package-specific meta, don't put this in "generated package-meta" | ||
authors = ["Kitware, Inc. <[email protected]>"] | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
description = "Visual saliency map generation interfaces and baseline implementations for explainable AI." | ||
|
||
[tool.poetry.dependencies] | ||
|
@@ -105,6 +105,7 @@ pre-commit = ">=2.20" | |
ruff = "^0.5.6" | ||
types-setuptools = ">=65.6.0.1" | ||
sphinx-lint = ">=1.0.0" | ||
pyright = {version=">=1.1.320",extras=["nodejs"]} | ||
# :auto linting: | ||
|
||
# :auto docs: | ||
|
@@ -245,3 +246,22 @@ incremental = false | |
module = "tests.*" | ||
ignore_errors = true | ||
# :auto mypy: | ||
|
||
# :auto pyright: | ||
[tool.pyright] | ||
pythonVersion = "3.9" | ||
reportMissingImports = "warning" | ||
typeCheckingMode = "standard" | ||
include = [ | ||
"src/xaitk_saliency", | ||
"tests", | ||
"examples" | ||
] | ||
exclude = [ | ||
"**/__pycache__", | ||
"demos", | ||
"scripts", | ||
"docs/_build", | ||
"docs/_implementations", | ||
] | ||
# :auto pyright: |
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