File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and the versioning is mostly derived from [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
16
## [ v0.6.2] - 2024-06-22
8
17
### Added
9
18
- pass optional kwargs to DecisionTreeClassifier in PR #537 by @busFred
Original file line number Diff line number Diff line change 2
2
# Distributed under the MIT software license
3
3
4
4
# NOTE: Version is replaced by a regex script.
5
- __version__ = "0.6.2 "
5
+ __version__ = "0.6.3 "
Original file line number Diff line number Diff line change 11
11
from setuptools .command .sdist import sdist
12
12
13
13
# NOTE: Version is replaced by a regex script.
14
- version = "0.6.2 "
14
+ version = "0.6.3 "
15
15
16
16
17
17
def _copy_native_code_to_setup ():
Original file line number Diff line number Diff line change 5
5
6
6
name = "interpret"
7
7
# NOTE: Version is replaced by a regex script.
8
- version = "0.6.2 "
8
+ version = "0.6.3 "
9
9
long_description = """
10
10
In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
11
11
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @interpretml/interpret-inline" ,
3
- "version" : " 0.6.2 " ,
3
+ "version" : " 0.6.3 " ,
4
4
"description" : " Interpret inline library for rendering visualizations across all notebook environments." ,
5
5
"main" : " index.js" ,
6
6
"keywords" : [],
You can’t perform that action at this time.
0 commit comments