Machine learning models usually perform really well for predictions, but are not interpretable. The iml package provides tools for analysing any black box machine learning model:
Feature importance: Which were the most important features?
Feature effects: How does a feature influence the prediction? (Accumulated local effects, partial dependence plots and individual conditional expectation curves)
Explanations for single predictions: How did the feature values of a single data point affect its prediction? (LIME and Shapley value)
Surrogate trees: Can we approximate the underlying black box model with a short decision tree?
The iml package works for any classification and regression machine learning model: random forests, linear models, neural networks, xgboost, etc.
This document shows you how to use the iml package to analyse machine learning models.
If you want to learn more about the technical details of all the methods, read chapters from: https://christophm.github.io/interpretable-ml-book/agnostic.html
We’ll use the MASS::Boston
dataset to demonstrate the abilities of the iml package. This dataset contains median house values from Boston neighbourhoods.
#> crim zn indus chas nox rm age dis rad tax ptratio black lstat
#> 1 0.00632 18 2.31 0 0.538 6.575 65.2 4.0900 1 296 15.3 396.90 4.98
#> 2 0.02731 0 7.07 0 0.469 6.421 78.9 4.9671 2 242 17.8 396.90 9.14
#> 3 0.02729 0 7.07 0 0.469 7.185 61.1 4.9671 2 242 17.8 392.83 4.03
#> 4 0.03237 0 2.18 0 0.458 6.998 45.8 6.0622 3 222 18.7 394.63 2.94
#> 5 0.06905 0 2.18 0 0.458 7.147 54.2 6.0622 3 222 18.7 396.90 5.33
#> 6 0.02985 0 2.18 0 0.458 6.430 58.7 6.0622 3 222 18.7 394.12 5.21
#> medv
#> 1 24.0
#> 2 21.6
#> 3 34.7
#> 4 33.4
#> 5 36.2
#> 6 28.7
First we train a randomForest to predict the Boston median housing value:
We create a Predictor
object, that holds the model and the data. The iml package uses R6 classes: New objects can be created by calling Predictor$new()
.
We can measure how important each feature was for the predictions with FeatureImp
. The feature importance measure works by shuffling each feature and measuring how much the performance drops. For this regression task we choose to measure the loss in performance with the mean absolute error (‘mae’), another choice would be the mean squared error (‘mse’).
Once we create a new object of FeatureImp
, the importance is automatically computed. We can call the plot()
function of the object or look at the results in a data.frame.
#> feature importance.05 importance importance.95 permutation.error
#> 1 lstat 4.279573 4.319557 4.472846 4.256962
#> 2 rm 3.417665 3.618382 3.688525 3.565948
#> 3 nox 1.722472 1.768450 1.819108 1.742823
#> 4 dis 1.671851 1.693488 1.737995 1.668948
#> 5 crim 1.637251 1.675498 1.742655 1.651219
#> 6 ptratio 1.382781 1.430746 1.453327 1.410013
#> 7 indus 1.424897 1.428523 1.467602 1.407822
#> 8 tax 1.355236 1.391597 1.418833 1.371431
#> 9 age 1.366735 1.376383 1.423154 1.356438
#> 10 black 1.206951 1.227470 1.231089 1.209683
#> 11 rad 1.099953 1.105950 1.134719 1.089924
#> 12 chas 1.031814 1.044732 1.051500 1.029593
#> 13 zn 1.037289 1.040113 1.045245 1.025041
Besides knowing which features were important, we are interested in how the features influence the predicted outcome. The FeatureEffect
class implements accumulated local effect plots, partial dependence plots and individual conditional expectation curves. The following plot shows the accumulated local effects (ALE) for the feature ‘lstat’. ALE shows how the prediction changes locally, when the feature is varied. The marks on the x-axis indicates the distribution of the ‘lstat’ feature, showing how relevant a region is for interpretation (little or no points mean that we should not over-interpret this region).
#> Warning in grid.Call.graphics(C_segments, x$x0, x$y0, x$x1, x$y1, x$arrow):
#> semi-transparency is not supported on this device: reported only once per page
If we want to compute the partial dependence curves on another feature, we can simply reset the feature:
#> Warning in grid.Call.graphics(C_segments, x$x0, x$y0, x$x1, x$y1, x$arrow):
#> semi-transparency is not supported on this device: reported only once per page
We can also measure how strongly features interact with each other. The interaction measure regards how much of the variance of \(f(x)\) is explained by the interaction. The measure is between 0 (no interaction) and 1 (= 100% of variance of \(f(x)\) due to interactions). For each feature, we measure how much they interact with any other feature:
#>
#> Attaching package: 'withr'
#> The following objects are masked from 'package:rlang':
#>
#> local_options, with_options
We can also specify a feature and measure all it’s 2-way interactions with all other features:
You can also plot the feature effects for all features at once:
#> Warning in grid.Call.graphics(C_segments, x$x0, x$y0, x$x1, x$y1, x$arrow):
#> semi-transparency is not supported on this device: reported only once per page
Another way to make the models more interpretable is to replace the black box with a simpler model - a decision tree. We take the predictions of the black box model (in our case the random forest) and train a decision tree on the original features and the predicted outcome. The plot shows the terminal nodes of the fitted tree. The maxdepth parameter controls how deep the tree can grow and therefore how interpretable it is.
#> Loading required package: partykit
#> Loading required package: libcoin
#> Loading required package: mvtnorm
We can use the tree to make predictions:
#> Warning in self$predictor$data$match_cols(data.frame(newdata)): Dropping
#> additional columns: medv
#> .y.hat
#> 1 27.09989
#> 2 27.09989
#> 3 27.09989
#> 4 27.09989
#> 5 27.09989
#> 6 27.09989
Global surrogate model can improve the understanding of the global model behaviour. We can also fit a model locally to understand an individual prediction better. The local model fitted by LocalModel
is a linear regression model and the data points are weighted by how close they are to the data point for wich we want to explain the prediction.
#> Loading required package: glmnet
#> Loading required package: Matrix
#> Loading required package: foreach
#>
#> Attaching package: 'foreach'
#> The following objects are masked from 'package:purrr':
#>
#> accumulate, when
#> Loaded glmnet 2.0-18
#>
#> Attaching package: 'glmnet'
#> The following object is masked from 'package:Metrics':
#>
#> auc
#> Loading required package: gower
#> beta x.recoded effect x.original feature feature.value
#> rm 4.4836483 6.575 29.479987 6.575 rm rm=6.575
#> ptratio -0.5244767 15.300 -8.024493 15.3 ptratio ptratio=15.3
#> lstat -0.4348698 4.980 -2.165652 4.98 lstat lstat=4.98
An alternative for explaining individual predictions is a method from coalitional game theory named Shapley value. Assume that for one data point, the feature values play a game together, in which they get the prediction as a payout. The Shapley value tells us how to fairly distribute the payout among the feature values.
We can reuse the object to explain other data points:
The results in data.frame form can be extracted like this:
#> feature phi phi.var feature.value
#> 1 crim -0.07903113 1.765439466 crim=0.02731
#> 2 zn -0.02300933 0.006323993 zn=0
#> 3 indus -0.32773478 0.666480660 indus=7.07
#> 4 chas -0.00748600 0.009281726 chas=0
#> 5 nox 0.30893146 0.853177388 nox=0.469
#> 6 rm -0.61811926 11.016882482 rm=6.421