Skip to content

Commit

Permalink
update measure_interactions default parameters to match the default E…
Browse files Browse the repository at this point in the history
…BM parameters
  • Loading branch information
paulbkoch committed Jan 26, 2025
1 parent 3e81055 commit 2c0b04f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,7 @@ We also build on top of many great packages. Please check them out!
- [Machine Learning Model Interpretability using AzureML & InterpretML (Explainable Boosting Machine)](https://www.youtube.com/watch?v=0ocVtXU8o1I)
- [A Case Study of Using Explainable Boosting Machines](https://uncch.hosted.panopto.com/Panopto/Pages/Embed.aspx?id=063d6839-e8db-40e0-8df4-b0fc012e709b&start=0)
- [From SHAP to EBM: Explain your Gradient Boosting Models in Python](https://www.youtube.com/watch?v=hnZjw77-1rE)
- [Rich Caruana – Friends Don’t Let Friends Deploy Black-Box Models](https://www.youtube.com/watch?v=2YKtNYBuojE)

# External links

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ def measure_interactions(
sample_weight=None,
feature_names=None,
feature_types=None,
max_interaction_bins=32,
min_samples_leaf=2,
min_hessian=1e-3,
max_interaction_bins=64,
min_samples_leaf=4,
min_hessian=1e-4,
reg_alpha=0.0,
reg_lambda=0.0,
max_delta_step=0.0,
Expand Down

0 comments on commit 2c0b04f

Please sign in to comment.