Skip to content

Commit

Permalink
v0.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jklaise committed Apr 29, 2021
1 parent 6ab565e commit 3dec4f5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [v0.5.8](https://github.com/SeldonIO/alibi/tree/v0.5.8) (2021-04-29)
[Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.5.7...v0.5.8)

### Added
- Experimental explainer serialization support using `dill`. See [docs](https://docs.seldon.io/projects/alibi/en/latest/overview/saving.html) for more details.

### Fixed
- Handle layers which are not part of `model.layers` for `IntegratedGradients`.

### Development
- Update type hints to be compatible with `numpy` 1.20.
- Separate licence build step in CI, only check licences against latest Python version.

## [v0.5.7](https://github.com/SeldonIO/alibi/tree/v0.5.7) (2021-03-31)
[Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.5.6...v0.5.7)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ BibTeX entry:
title = {Alibi: Algorithms for monitoring and explaining machine learning models},
author = {Klaise, Janis and Van Looveren, Arnaud and Vacanti, Giovanni and Coca, Alexandru},
url = {https://github.com/SeldonIO/alibi},
version = {0.5.7},
date = {2021-03-31},
version = {0.5.8},
date = {2021-04-29},
year = {2019}
}
```
2 changes: 1 addition & 1 deletion alibi/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# 1) we don't load dependencies by storing it in __init__.py
# 2) we can import it in setup.py for the same reason
# 3) we can import it into your module module
__version__ = '0.5.8dev'
__version__ = '0.5.8'

0 comments on commit 3dec4f5

Please sign in to comment.