Skip to content

Commit

Permalink
Fix Spelling Errors On README.md (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
salomonj11 committed Dec 17, 2023
1 parent 33b79a1 commit 1a45500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ that explains the workings of a (scikit-learn compatible) machine
learning model. The dashboard provides interactive plots on model performance,
feature importances, feature contributions to individual predictions,
"what if" analysis,
partial dependence plots, SHAP (interaction) values, visualisation of individual
partial dependence plots, SHAP (interaction) values, visualization of individual
decision trees, etc.

You can also interactively explore components of the dashboard in a
Expand Down Expand Up @@ -536,7 +536,7 @@ In order to reduce the memory footprint there are a number of things you can do:
2. Setting a lower precision. By default shap values are stored as `'float64'`,
but you can store them as `'float32'` instead and save half the space:
```ClassifierExplainer(model, X_test, y_test, precision='float32')```. You
can also set a lower precision on your `X_test` dataset yourself ofcourse.
can also set a lower precision on your `X_test` dataset yourself of course.
3. For multi class classifier, by default `ClassifierExplainer` calculates
shap values for all classes. If you're only interested in a single class
you can drop the other shap values: `explainer.keep_shap_pos_label_only(pos_label)`
Expand Down

0 comments on commit 1a45500

Please sign in to comment.