Skip to content

Commit b6b7e13

Browse files
committed
v0.7.2
1 parent 0e83d96 commit b6b7e13

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ 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.7.2] - 2025-08-05
8+
### Changed
9+
- improved memory requirements estimate
10+
711
## [v0.7.1] - 2025-07-25
812
### Changed
913
- improved memory requirements estimate

docs/benchmarks/ebm-benchmark.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@
834834
" print(f\"FIT: {global_counter}, {trial.task.origin}, {trial.task.name}, {trial.method}, {trial.meta}, classes:{trial.task.n_classes}, features:{fit_params['X'].shape[1]}, train_samples:{fit_params['X'].shape[0]}, orig_samples:{trial.task.n_samples}\")\n",
835835
"\n",
836836
" if isinstance(est, (ExplainableBoostingClassifier, ExplainableBoostingRegressor)):\n",
837-
" n_bytes = est.estimate_mem(fit_params[\"X\"], fit_params[\"y\"])\n",
837+
" n_bytes = est.estimate_mem(fit_params[\"X\"], fit_params[\"y\"], data_multiplier=1.0 / (1.0 - test_size))\n",
838838
" print(f\"EBM Memory Required: {n_bytes}\")\n",
839839
" trial.log(\"mem\", n_bytes)\n",
840840
" \n",

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.7.1"
5+
__version__ = "0.7.2"

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

0 commit comments

Comments
 (0)