Skip to content

Commit c88a085

Browse files
committed
v0.7.6-rc.1
1 parent 31153a6 commit c88a085

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

R/DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: interpret
22
Title: Fit Interpretable Machine Learning Models
3-
Version: 0.1.34
4-
Date: 2024-11-28
3+
Version: 0.1.35
4+
Date: 2026-02-25
55
Description: Package for training interpretable machine learning models. Historically, the most interpretable machine learning models were not very accurate, and the most accurate models were not very interpretable. Microsoft Research has developed an algorithm called the Explainable Boosting Machine (EBM) which has both high accuracy and interpretable characteristics. EBM uses machine learning techniques like bagging and boosting to breathe new life into traditional GAMs (Generalized Additive Models). This makes them as accurate as random forests and gradient boosted trees, and also enhances their intelligibility and editability. Details on the EBM algorithm can be found in the paper by Rich Caruana, Yin Lou, Johannes Gehrke, Paul Koch, Marc Sturm, and Noemie Elhadad (2015, <doi:10.1145/2783258.2788613>).
66
URL: https://github.com/interpretml/interpret
77
BugReports: https://github.com/interpretml/interpret/issues

python/interpret-core/setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,11 @@ def run(self):
209209
classifiers=[
210210
"Programming Language :: Python",
211211
"Programming Language :: Python :: 3",
212-
"Programming Language :: Python :: 3.9",
213212
"Programming Language :: Python :: 3.10",
214213
"Programming Language :: Python :: 3.11",
215214
"Programming Language :: Python :: 3.12",
215+
"Programming Language :: Python :: 3.13",
216+
"Programming Language :: Python :: 3.14",
216217
"Topic :: Scientific/Engineering :: Artificial Intelligence",
217218
"Development Status :: 3 - Alpha",
218219
"License :: OSI Approved :: MIT License",
@@ -274,14 +275,12 @@ def run(self):
274275
# Testing
275276
"testing": [
276277
"scipy>=0.18.1",
277-
"scikit-learn>=1.0.0",
278278
"pytest>=4.3.0",
279279
"pytest-runner>=4.4",
280280
"pytest-xdist>=1.29",
281281
"nbconvert>=5.4.1",
282282
"selenium>=3.141.0",
283283
"pytest-cov>=2.6.1",
284-
"ruff>=0.1.2",
285284
"jupyter>=1.0.0",
286285
"ipywidgets>=7.4.2",
287286
],

0 commit comments

Comments
 (0)