Skip to content

Commit a84a17d

Browse files
committed
v0.6.3 release
1 parent d49a7db commit a84a17d

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ 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.6.3] - 2024-08-07
8+
### Added
9+
- visualizations for the APRL (Automatic Piecewise Linear Regression) package by @mathias-von-ottenbreit
10+
### Changed
11+
- early_stopping_tolerance default changed to 1e-5 to reduce EBMs fitting time slightly
12+
- shuffle initial feature order within each bag and during greedy boosting
13+
### Fixed
14+
- fixed numpy 2.0 issue in the Marginal class
15+
716
## [v0.6.2] - 2024-06-22
817
### Added
918
- pass optional kwargs to DecisionTreeClassifier in PR #537 by @busFred

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.6.2"
5+
__version__ = "0.6.3"

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.6.2"
14+
version = "0.6.3"
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.6.2"
8+
version = "0.6.3"
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.6.2",
3+
"version": "0.6.3",
44
"description": "Interpret inline library for rendering visualizations across all notebook environments.",
55
"main": "index.js",
66
"keywords": [],

0 commit comments

Comments
 (0)