Explainable AI
AI systems and techniques making model decisions interpretable and transparent to human users.
FAQs
What is SHAP and how is it used to explain credit model decisions?
SHAP (SHapley Additive exPlanations) computes each feature's contribution to a specific prediction using game-theoretic Shapley values. For each individual credit decision, SHAP calculates how much each input feature shifted the prediction away from the model's average prediction. Positive SHAP values indicate features that increased creditworthiness; negative values indicate factors that reduced it. For credit adverse action notices, SHAP values are sorted to identify the top factors most negatively affecting the decision—providing the specific, individualized explanations required by ECOA and CFPB guidance. SHAP is model-agnostic (works on any ML model) and mathematically grounded, making it the industry standard for credit model explainability.
Can deep learning models be made explainable?
Deep learning models (neural networks) can be partially explained through post-hoc techniques, though explanation quality is less complete than for inherently interpretable models. For tabular data (credit models, fraud detection), SHAP and LIME provide feature-level attributions that approximate the model's logic locally around specific predictions. For natural language models, attention visualization shows which tokens the model focused on for specific outputs, and gradient-based methods (Integrated Gradients, GradCAM) highlight influential input regions. Limitations: post-hoc explanations are approximations of complex non-linear models, may not perfectly represent actual model reasoning, and can be inconsistent for similar inputs. Regulators are increasingly scrutinizing whether post-hoc explanations constitute genuine transparency or merely serve as post-rationalization of black-box decisions.
What is model documentation and why is it required for financial AI?
Model documentation is the formal record of a model's purpose, design, development, validation, and performance—required by financial regulators as evidence of responsible model governance. OCC SR 11-7 and Federal Reserve guidance require banks to maintain documentation covering: model purpose and scope, theoretical basis and assumptions, development data sources and preprocessing steps, training methodology and hyperparameter choices, validation results (in-sample and out-of-sample performance), limitations and known weaknesses, monitoring processes, and change history. Model documentation enables regulatory examination, supports internal audit of AI risk, facilitates model transitions when staff turns over, and provides the paper trail demonstrating that the model was developed and deployed responsibly.
Related Terms
Machine Learning in Finance
Application of algorithms that learn from financial data to make predictions and automate decisions.
Neural Network
Computational system loosely inspired by brain neurons, capable of learning complex patterns from data.
AI Hallucination
AI model generating confident but factually incorrect or fabricated information not grounded in reality.
Federated Learning
Machine learning approach training models across distributed datasets without centralizing raw sensitive data.