Skip to content

Commit

Permalink
Updated CHANGELOG and version number. to 0.2.5
Browse files Browse the repository at this point in the history
Updated to 0.2.5

Co-Authored-By: S Jenkins <[email protected]>
Co-Authored-By: Harsha-Nori <[email protected]>
  • Loading branch information
3 people committed Jun 16, 2021
1 parent 1d60dbc commit b8f0bf3
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ 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.2.5] - 2021-06-15
### Added
- Sample weight support added for EBM.
- Joint `predict_and_contrib` added to EBM where both predictions and feature contributions are generated in one call.
- EBM predictions now substantially faster with categorical featured predictions.
- Preliminary documentation for all of `interpret` now public at https://interpret.ml/docs.
- Decision trees now work in cloud environments (InlineRenderer support).
- Packages `interpret` and `interpret-core` now distributed via conda.
- Packages `interpret` and `interpret-core` now distributed via sdist.
- Published dockerfile for `interpret` at `interpretml/interpret` on docker.io
### Fixed
- EBM uniform binning bug fixed where empty bins can raise exceptions.
- Users can no longer include duplicate interaction terms for EBM.
- CSS adjusted for inline rendering such that it does not interfere with its hosting environment.
- JS dependencies updated.
### Experimental
- Ability to merge multiple EBM models into one. Found in `interpret.glassbox.ebm.utils`.

## [v0.2.4] - 2021-01-19
### Fixed
- Bug fix on global EBM plots.
Expand Down Expand Up @@ -380,6 +398,7 @@ Expect similar or slightly slower training times due to interactions.
- Libraries are statically linked where possible.
- Code now conforms to Python Black and its associated flake8.

[v0.2.5]: https://github.com/microsoft/interpret/releases/tag/v0.2.5
[v0.2.4]: https://github.com/microsoft/interpret/releases/tag/v0.2.4
[v0.2.3]: https://github.com/microsoft/interpret/releases/tag/v0.2.3
[v0.2.2]: https://github.com/microsoft/interpret/releases/tag/v0.2.2
Expand Down
2 changes: 1 addition & 1 deletion python/interpret-core/interpret/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Distributed under the MIT software license

# NOTE: Version is replaced by a regex script.
__version__ = "0.2.4"
__version__ = "0.2.5"
2 changes: 1 addition & 1 deletion python/interpret-core/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@interpretml/interpret-inline",
"version": "0.2.4",
"version": "0.2.5",
"description": "Interpret inline library for rendering visualizations across all notebook environments.",
"main": "index.js",
"keywords": [],
Expand Down
2 changes: 1 addition & 1 deletion python/interpret-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

name = "interpret-core"
# NOTE: Version is replaced by a regex script.
version = "0.2.4"
version = "0.2.5"
long_description = """
Core system for **the** interpret package.
Expand Down
2 changes: 1 addition & 1 deletion python/interpret/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

name = "interpret"
# NOTE: Version is replaced by a regex script.
version = "0.2.4"
version = "0.2.5"
long_description = """
In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
Expand Down

0 comments on commit b8f0bf3

Please sign in to comment.