Skip to content

Commit 979d93f

Browse files
committed
update interpret to version 0.5.1
1 parent 5d56f07 commit 979d93f

File tree

5 files changed

+24
-4
lines changed

5 files changed

+24
-4
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and the versioning is mostly derived from [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [v0.5.1] - 2024-02-08
8+
### Added
9+
- Added new init parameter: interaction_smoothing_rounds
10+
- Added new init parameter: min_hessian
11+
- synthetic dataset generator (make_synthetic) for testing GAMs and for documentation
12+
### Changed
13+
- default parameters have been modified to improve the accuracy of EBMs
14+
- changed boosting internals to use LogitBoost to improve accuracy
15+
- changed interaction detection to use hessians to improve interaction selection
16+
- enabled smoothing_rounds by default to improve the smoothness of EBMs
17+
- added the ability to specify interactions via feature names or negative indexing
18+
- improved the speed of Morris sensitivity and partial dependence
19+
- python 3.12 support for core EBMs. Some of our optional dependencies do not yet support python 3.12 though
20+
- made early stopping more consistent and changed the early_stopping_tolerance to be a percentage
21+
### Fixed
22+
- avoid displaying a scroll bar by default in jupyter notebook cells
23+
- removed the dependency on deprecated distutils
24+
### Breaking Changes
25+
- changed the internal representation for classifiers that have just 1 class
26+
727
## [v0.5.0] - 2023-12-13
828
### Added
929
- added support for AVX-512 in PyPI installations to improve fitting speed

python/interpret-core/interpret/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Distributed under the MIT software license
33

44
# NOTE: Version is replaced by a regex script.
5-
__version__ = "0.5.0"
5+
__version__ = "0.5.1"

python/interpret-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from setuptools.command.sdist import sdist
1212

1313
# NOTE: Version is replaced by a regex script.
14-
version = "0.5.0"
14+
version = "0.5.1"
1515

1616

1717
def _copy_native_code_to_setup():

python/interpret/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
name = "interpret"
77
# NOTE: Version is replaced by a regex script.
8-
version = "0.5.0"
8+
version = "0.5.1"
99
long_description = """
1010
In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
1111

shared/vis/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@interpretml/interpret-inline",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "Interpret inline library for rendering visualizations across all notebook environments.",
55
"main": "index.js",
66
"keywords": [],

0 commit comments

Comments
 (0)