Calibrated Explanations for Regression
Tuwe Löfström, Helena Löfström, Ulf Johansson, Cecilia Sönströd, Rudy Matela
TL;DR
The paper addresses the need for uncertainty-aware explanations in regression by extending Calibrated Explanations from classification to standard and probabilistic regression. It leverages Conformal Predictive Systems (CPS) to provide calibrated predictions and uncertainty quantification, while using Venn-Abers (VA) style calibration for classification components where appropriate. The authors introduce factual and counterfactual explanations for both standard regression (with prediction intervals) and probabilistic regression (probabilities of exceeding a threshold), including conjunctive rules, and provide an open-source Python implementation. Through experiments on the California Housing dataset, the method demonstrates fast, reliable, and robust standard regression explanations, alongside a flexible probabilistic variant that trades some speed for threshold-based probabilistic insight. This work broadens the applicability of calibrated explanations to regression, enabling uncertainty-aware decision making in a wider range of domains.
Abstract
Artificial Intelligence (AI) is often an integral part of modern decision support systems. The best-performing predictive models used in AI-based decision support systems lack transparency. Explainable Artificial Intelligence (XAI) aims to create AI systems that can explain their rationale to human users. Local explanations in XAI can provide information about the causes of individual predictions in terms of feature importance. However, a critical drawback of existing local explanation methods is their inability to quantify the uncertainty associated with a feature's importance. This paper introduces an extension of a feature importance explanation method, Calibrated Explanations, previously only supporting classification, with support for standard regression and probabilistic regression, i.e., the probability that the target is above an arbitrary threshold. The extension for regression keeps all the benefits of Calibrated Explanations, such as calibration of the prediction from the underlying model with confidence intervals, uncertainty quantification of feature importance, and allows both factual and counterfactual explanations. Calibrated Explanations for standard regression provides fast, reliable, stable, and robust explanations. Calibrated Explanations for probabilistic regression provides an entirely new way of creating probabilistic explanations from any ordinary regression model, allowing dynamic selection of thresholds. The method is model agnostic with easily understood conditional rules. An implementation in Python is freely available on GitHub and for installation using both pip and conda, making the results in this paper easily replicable.
