Skip to content

Commit

Permalink
ExplainableAI v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adrhill committed Feb 21, 2024
1 parent d20df21 commit 59a10b3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# ExplainableAI.jl
## Version `v0.8.0`
This release removes the automatic reexport of heatmapping functionality.
Users are now required to manually load
[VisionHeatmaps.jl][VisionHeatmaps] and/or [TextHeatmaps.jl][TextHeatmaps].

This reduces the maintenance burden for new heatmapping features
and the amount of dependencies for users who don't need heatmapping functionality.

* ![BREAKING][badge-breaking] Removed reexport of heatmapping functionality by updating XAIBase dependency to `v3.0.0` ([#162][pr-162]).
* ![Feature][badge-feature] Added `GradCAM` analyzer ([#155][pr-155]). Try it with [VisionHeatmaps.jl][VisionHeatmaps]'s new `heatmap_overlay` feature.

## Version `v0.7.0`
This release moves the core interface (`Explanation`, `heatmap`, `analyze`)
into a separate package called [XAIBase.jl](https://github.com/Julia-XAI/XAIBase.jl).
Expand Down Expand Up @@ -195,8 +206,14 @@ Performance improvements:
![Maintenance][badge-maintenance]
![Documentation][badge-docs]
-->

[VisionHeatmaps]: https://julia-xai.github.io/XAIDocs/VisionHeatmaps/stable/
[TextHeatmaps]: https://julia-xai.github.io/XAIDocs/TextHeatmaps/stable/

[pr-162]: https://github.com/Julia-XAI/ExplainableAI.jl/pull/162
[pr-159]: https://github.com/Julia-XAI/ExplainableAI.jl/pull/159
[pr-157]: https://github.com/Julia-XAI/ExplainableAI.jl/pull/157
[pr-155]: https://github.com/Julia-XAI/ExplainableAI.jl/pull/155
[pr-154]: https://github.com/Julia-XAI/ExplainableAI.jl/pull/154
[pr-150]: https://github.com/Julia-XAI/ExplainableAI.jl/pull/150
[pr-149]: https://github.com/Julia-XAI/ExplainableAI.jl/pull/149
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ExplainableAI"
uuid = "4f1bc3e1-d60d-4ed0-9367-9bdff9846d3b"
authors = ["Adrian Hill <[email protected]>"]
version = "0.8.0-DEV"
version = "0.8.0"

[deps]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Expand Down

2 comments on commit 59a10b3

@adrhill
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

This release removes the automatic reexport of heatmapping functionality.
Users are now required to manually load VisionHeatmaps.jl and/or TextHeatmaps.jl.

This reduces the maintenance burden for new heatmapping features and the amount of dependencies for users who don't require heatmapping functionality.

  • BREAKING Removed reexport of heatmapping functionality by updating XAIBase dependency (#162).
  • Feature Added GradCAM analyzer (#155). Try it with VisionHeatmaps.jl's new heatmap_overlay feature.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/101352

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.8.0 -m "<description of version>" 59a10b370b3721db097c2850ed1e936a94768139
git push origin v0.8.0

Please sign in to comment.