From 3dec4f518599fd201da81d0be1a569af9ce75976 Mon Sep 17 00:00:00 2001 From: Janis Klaise Date: Thu, 29 Apr 2021 15:13:22 +0100 Subject: [PATCH] v0.5.8 --- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- alibi/version.py | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 691ad30ca..23a7f259b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index 77f3d2a0a..89e676d1b 100644 --- a/README.md +++ b/README.md @@ -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} } ``` diff --git a/alibi/version.py b/alibi/version.py index e87349a32..40184473a 100644 --- a/alibi/version.py +++ b/alibi/version.py @@ -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'