diff --git a/CHANGELOG.md b/CHANGELOG.md index bcc626a15..436e25b3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and the versioning is mostly derived from [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v0.1.17] - 2019-09-24 +### Fixed +- Morris sensitivity now works for both predict and predict_proba on scikit models. +- Removal of debug print statements around blackbox explainers. +### Changed +- Dependencies for numpy/scipy/pandas/scikit-learn relaxed to (1.11.1,0.18.1,0.19.2, 0.18.1) respectively. +- Visualization provider defaults set by environment detection (cloud and local use different providers). +### Experimental (WIP) +- Inline visualizations for show(explanation). This allows cloud notebooks, and offline notebook support. + Dashboard integration still ongoing. + ## [v0.1.16] - 2019-09-17 ### Added - Visualize and compute platforms are now refactored and use an extension system. Details on use upcoming in later release. @@ -192,6 +203,7 @@ and the versioning is mostly derived from [Semantic Versioning](https://semver.o - Libraries are statically linked where possible. - Code now conforms to Python Black and its associated flake8. +[v0.1.17]: https://github.com/microsoft/interpret/releases/tag/v0.1.17 [v0.1.16]: https://github.com/microsoft/interpret/releases/tag/v0.1.16 [v0.1.15]: https://github.com/microsoft/interpret/releases/tag/v0.1.15 [v0.1.14]: https://github.com/microsoft/interpret/releases/tag/v0.1.14 diff --git a/python/interpret-core/interpret/version.py b/python/interpret-core/interpret/version.py index 763860936..4b802d5b8 100644 --- a/python/interpret-core/interpret/version.py +++ b/python/interpret-core/interpret/version.py @@ -2,4 +2,4 @@ # Distributed under the MIT software license # NOTE: Version is replaced by a regex script. -__version__ = "0.1.16" +__version__ = "0.1.17" diff --git a/python/interpret-core/js/package.json b/python/interpret-core/js/package.json index 9bb091fc4..8e19e0f71 100644 --- a/python/interpret-core/js/package.json +++ b/python/interpret-core/js/package.json @@ -1,6 +1,6 @@ { "name": "interpret-inline", - "version": "0.0.16", + "version": "0.1.17", "description": "Interpret inline library for exposing UX across all notebook environments.", "main": "index.js", "keywords": [], diff --git a/python/interpret-core/setup.py b/python/interpret-core/setup.py index 5f2953677..d2073c91a 100644 --- a/python/interpret-core/setup.py +++ b/python/interpret-core/setup.py @@ -5,7 +5,7 @@ name = "interpret-core" # NOTE: Version is replaced by a regex script. -version = "0.1.16" +version = "0.1.17" long_description = """ Core system for **the** interpret package. diff --git a/python/interpret/setup.py b/python/interpret/setup.py index 60e7ac490..c53730075 100644 --- a/python/interpret/setup.py +++ b/python/interpret/setup.py @@ -5,7 +5,7 @@ name = "interpret" # NOTE: Version is replaced by a regex script. -version = "0.1.16" +version = "0.1.17" long_description = """ In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.