“Why Should I Trust You?” Explaining the Predictions of Any Classifier
📜 Abstract
Despite widespread adoption, machine learning models remain mostly black boxes. Understanding the reasons behind predictions is, however, quite important in assessing trust, which is fundamental if one plans to take action based on a prediction, or when choosing whether to deploy a new model. Such understanding also provides insights into the model, which can be used to transform an untrustworthy model or prediction into a trustworthy one. In this work, we propose LIME, a novel explanation technique that explains the predictions of any classifier in an interpretable and faithful manner, by learning an interpretable model locally around the prediction. We also propose a method to explain models by presenting representative individual predictions and their explanations in a non-redundant way, framing the task as a submodular optimization problem. We demonstrate the flexibility of these methods by explaining different models for text (e.g. random forests) and image classification (e.g. neural networks). We show the utility of explanations via novel experiments, both simulated and with human subjects, on various scenarios that require trust: deciding if one should trust a prediction, choosing between models, improving an untrustworthy classifier, and identifying why a classifier should not be trusted.
✨ Summary
- The paper introduced LIME (Local Interpretable Model-agnostic Explanations), establishing a widely used approach for explaining black-box predictions through local, sparse surrogate models. It also introduced SP-LIME, which selects representative and non-redundant instances for model-level inspection. The paper was published in the KDD 2016 proceedings on August 13, 2016. (doi.org)
- Its direct software influence is documented by the authors’ open-source
limeproject, which implements explanations for text, tabular, image, and regression models and explicitly identifies the paper as its basis. (github.com) - The method was subsequently integrated into broader interpretability tooling: InterpretML provides a
LimeTabularimplementation and presents LIME as a black-box local explanation method. (interpret.ml) - Follow-on research extended and evaluated the approach. Anchors developed a rule-based successor to linear LIME; later work provided theoretical analysis of LIME’s coefficients and studied instability arising from sampling and instance-dependent explanation quality. (arxiv.org)
- The sources reviewed establish substantial research and open-source tooling influence, but do not by themselves establish a specific commercial deployment by an industry company.