Local Interpretability
Local interpretability refers to understanding why a machine learning model produced a specific individual prediction, rather than how the model behaves overall. For example, it explains the factors that led a model to a particular decision for one case. This is often useful when a model's full internal logic is too complex to summarize globally in a simple way.
Local interpretability concerns the ability to explain a model's output for a given input or prediction, as opposed to global interpretability, which characterizes the model's behavior across the input space as a whole. In the computational framing, a model is considered more locally interpretable for a given explanation type when the local form of that explanation is more readily computable. Common methods for producing local explanations of complex ('black box') models include LIME (Local Interpretable Model-Agnostic Explanations), Shapley Additive Explanations (SHAP), and integrated gradients. Empirical work has indicated that human accuracy on local interpretability tasks tends to decrease as the number of operations in the model increases, suggesting local interpretability is not absolute but varies with model complexity. Note that the distinction between interpretability (understanding the model or its reasoning) and explainability (post-hoc justification of outputs) is contested and used inconsistently across the literature; this entry treats 'local explanation' methods as one operationalization of local interpretability without asserting a single authoritative definition.
Why it matters
Local interpretability addresses a practical problem that arises when models are too complex to summarize globally in a simple way: even if the overall behavior of a system cannot be captured succinctly, stakeholders often still need to understand why a specific decision was made for a specific case. This case-level focus is frequently what matters most in operational and compliance settings, where a single adverse decision—rather than aggregate model behavior—may trigger a review, a challenge, or a requirement to justify an outcome to an affected individual.
Because local explanations aim to characterize individual predictions rather than model-wide behavior, they are often positioned as a tool for reviewing high-stakes or contested outcomes. However, local interpretability should not be treated as absolute. Empirical work cited in the evidence indicates that human accuracy on local interpretability tasks tends to decrease as the number of operations in the model increases, which suggests that the practical usefulness of a local explanation can degrade as model complexity grows. Practitioners should therefore treat local interpretability as varying with model complexity rather than as a guaranteed property.
Who it's relevant to
Inside Local Interpretability
Common questions
Answers to the questions practitioners most commonly ask about Local Interpretability.