Skip to content

Commit 4fe5db6

Browse files
committed
v0.6.9
1 parent e0bcadd commit 4fe5db6

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.9] - 2025-01-06
8+
### Added
9+
- refitting of the intercept term after fitting the rest of the model to improve the intercept value
10+
- new options for handling missing values: "low", "high", "separate", and "gain"
11+
- use Fischer (1958) for handling categorical values. This is the same method employed by LightGBM.
12+
- added new parameters to control overfitting of nominal categoricals: gain\_scale, min\_cat\_samples, cat\_smooth
13+
### Changed
14+
- enable AVX-512 by default
15+
- modified default EBM parameters: outer\_bags=16, n\_jobs=-1
16+
### Fixed
17+
- fixed memory leak in the purification function
18+
719
## [v0.6.8] - 2024-12-09
820
### Fixed
921
- resolved new scikit-learn requirement for having \_\_sklearn\_tags\_\_

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.8"
5+
__version__ = "0.6.9"

python/interpret-core/setup.py

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

1414
# NOTE: Version is replaced by a regex script.
15-
version = "0.6.8"
15+
version = "0.6.9"
1616

1717

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

0 commit comments

Comments
 (0)