From 8db3d5b6605938af76e6dc6215ad51299d7174dd Mon Sep 17 00:00:00 2001 From: Ilya Matiach Date: Fri, 7 Aug 2020 17:44:25 -0400 Subject: [PATCH] fixed minor doc issue --- notebooks/plots/waterfall.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/plots/waterfall.ipynb b/notebooks/plots/waterfall.ipynb index 22df5a64d..fc3a580bf 100644 --- a/notebooks/plots/waterfall.ipynb +++ b/notebooks/plots/waterfall.ipynb @@ -22,7 +22,7 @@ "X,y = shap.datasets.adult()\n", "model = xgboost.XGBClassifier().fit(X, y)\n", "\n", - "# compute SHAP values for the first 500 samples\n", + "# compute SHAP values for the first 5000 samples\n", "bg = shap.utils.sample(X, 100)\n", "explainer = shap.Explainer(model, bg)\n", "shap_values = explainer(X[:5000])"