A hedge fund uses a gradient-boosting model to generate daily equity trade signals. A compliance officer requests a post-hoc explanation for why the model recommended a large short position on a specific stock. The data science team proposes using SHAP (SHapley Additive exPlanations). Which statement BEST describes a key advantage of SHAP over LIME (Local Interpretable Model-agnostic Explanations) in this context?
Select an answer to reveal the explanation.
Short Explanation and Infographic
SHAP is like splitting a dinner bill using game theory — everyone's contribution is calculated fairly based on all possible seating arrangements at the table. That's literally Shapley values from cooperative game theory. LIME, while useful, approximates locally and can give inconsistent answers when you compare two trades side by side. SHAP's consistency and additivity make it the compliance-preferred choice when you need auditable, comparable explanations.
Full explanation below image
Full Explanation
SHAP (SHapley Additive exPlanations), developed by Lundberg and Lee, grounds feature attribution in cooperative game theory. Specifically, SHAP values satisfy four axioms: efficiency (attributions sum to the difference between the model output and a baseline), symmetry (features with identical contributions receive identical attributions), dummy (features that never affect the output receive zero attribution), and additivity (SHAP values from sub-models can be combined). These properties make SHAP explanations mathematically rigorous and directly comparable across predictions—a critical requirement when explaining trade recommendations to compliance officers or regulators.
LIME (Local Interpretable Model-agnostic Explanations), developed by Ribeiro et al., works by training a simple surrogate model (typically linear) in the neighborhood of a specific prediction. While LIME is computationally flexible and intuitive, it lacks global consistency: the same feature can receive different explanations for two very similar inputs depending on how the local neighborhood is sampled. This inconsistency creates problems in regulated contexts where explanations must be reproducible and auditable.
Option A is incorrect because neither SHAP nor LIME provides 100% faithful explanations for complex black-box models. Tree SHAP is exact for tree-based models, but kernel SHAP (model-agnostic) is still an approximation. The distinction is not absolute faithfulness but rather mathematical consistency.
Option C is incorrect. SHAP—especially kernel SHAP for non-tree models—is typically more computationally expensive than LIME, not faster. TreeSHAP is fast, but it is architecture-specific.
Option D is incorrect. Both SHAP and LIME are model-agnostic post-hoc explainability methods. LIME does not require linear models; its local surrogate can be any interpretable model. The key difference is not architecture-agnosticism but consistency guarantees.
In financial AI governance, regulators increasingly expect model explanations to be consistent and auditable. SHAP's game-theoretic foundation makes it more defensible in supervisory examinations, ECOA adverse action notices, and MiFID II best execution documentation.