aliquote.org

Automated ML interpretation

June 19, 2018

Today I noticed that there is now a Python package “to explain the output of any machine learning model”: SHAP.

I was already aware of LIME and its R interface, but this one package is dedicated to (boosted) trees, including random forests. From what I have seen, the output looks more pretty compared to LIME but especially most engaging given the way it focus on interactive displays. Most notably, it includes dependence plots in addition to effect and summary plots which generalize partial dependence and feature importance plot over the entire sample. The SHAP value is more refined than importance measure as defined in Random Forest, for instance. Indeed it is not simply a permuted measure of accuracy gain in a classification task, but it summarizes the sum of the effects of each feature being introduced into a conditional expectation, taking into account the order in which features enter the model in the case of non-linear models.

There is an arXiv paper right there: Consistent Individualized Feature Attribution for Tree Ensembles, as well as a NIPS paper (PDF). I think it is a very promising approach, like most interactive displays that enable the user to manipulate the data and the predictions while accounting for prediction uncertainty. In this respect, the many papers published by the UW Interactive Data Lab are among the best references I am aware of, see e.g. Uncertainty Displays Using Quantile Dotplots or CDFs Improve Transit Decision-Making or Visualizing Dataflow Graphs of Deep Learning Models in TensorFlow. In any case, boosting methods seem to take increasing precedence over random forests or SVMs.

This was also a good opportunity to try the treeinterpreter package which is quite nicely illustrated in the following blog post: Interpreting random forests. Finally, there is also DALEX, which is an R package influenced by LIME that also focuses on Random Forest and XGBoost.

[2020-02-25]
A recent review of the Python data stack present some the automated approaches commonly developed in ML: Machine Learning in Python: Main developments and technology trends in data science, machine learning, and artificial intelligence. See also AutoML: A Survey of the State-of-the-Art.

See Also

» Python for statistical computing » Minor update on SAS2R » The Competitive Programmer's Handbook » Recent readings on arXiv » Academic Teaching