Skip to content

Commit 83d0f34

Browse files
committed
new release: update version numbers and changelog
1 parent 7db6496 commit 83d0f34

File tree

6 files changed

+24
-6
lines changed

6 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ 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.4.0] - 2023-05-11
8+
### Added
9+
- alternative objective functions: poisson_deviance, tweedie_deviance, gamma_deviance, pseudo_huber, rmse_log (log link)
10+
- greediness __init__ parameter that allows selecting a behavior between cyclic boosting and greedy boosting
11+
- smoothing_rounds __init__ parameter
12+
- added type hints to the EBM __init__ parameters and class attributes
13+
- init_score parameter to allow boosting and prediction on top of a previous model
14+
- multiclass support in merge_ebms
15+
### Changed
16+
- default BaseLinear regressor is changed from Lasso to LinearRegression class
17+
- placed limits on the amount of memory used to find interactions with high cardinality categoricals
18+
### Fixed
19+
- validation_size of 0 is now handled by disabling early_stopping and using the final model
20+
### Breaking Changes
21+
- replaced the __init__ param "mains" with "exclude"
22+
- removed the binning __init__ param as this functionality was already fully supported in feature_types
23+
- removed the unused zero_val_count attribute and n_samples attribute
24+
- renamed the noise_scale_ attribute to noise_scale_boosting_ and added noise_scale_binning_ to DPEBMs
25+
726
## [v0.3.2] - 2023-03-14
827
### Fixed
928
- fix the issue that the shared library would only work on newer linux versions

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.3.2"
5+
__version__ = "0.4.0"

python/interpret-core/interpret/glassbox/_ebm/_ebm.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
import numpy as np
6969
from warnings import warn
7070

71-
from sklearn.base import is_classifier, is_regressor # type: ignore
71+
from sklearn.base import is_classifier # type: ignore
7272
from sklearn.utils.validation import check_is_fitted # type: ignore
7373
from sklearn.isotonic import IsotonicRegression
7474

@@ -80,7 +80,6 @@
8080
ClassifierMixin,
8181
RegressorMixin,
8282
) # type: ignore
83-
from sklearn.utils.extmath import softmax # type: ignore
8483
from itertools import combinations, groupby
8584

8685
import logging

python/interpret-core/setup.py

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

1313
name = "interpret-core"
1414
# NOTE: Version is replaced by a regex script.
15-
version = "0.3.2"
15+
version = "0.4.0"
1616
long_description = """
1717
Core system for the interpret package.
1818

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

0 commit comments

Comments
 (0)