# Governing risk models under regulatory scrutiny
An examiner slides a single question across the table: "Show me where this variable came from." The bank's new credit scoring model is ready to launch. The data science team is confident. But if nobody can trace one input back to its source system, the model does not go live. That is the reality of governing risk models in a regulated bank.
This lesson puts you in that validation review. You will learn the rules examiners apply, the controls they demand, and why data lineagedata lineageData lineage maps how data moves and transforms across systems, from origin to consumption, showing where it came from, what changed it, and where it goes.Voir la définition complète → is the pressure point where most models fail.
A model in banking is any quantitative method that turns input data into a decision or estimate. A credit scoring model predicts default risk. An anti-money-laundering (AML) model flags suspicious transactions. A stress-testing model estimates losses in a recession.
When a model is wrong, real money and real people are affected. A biased scoring model can deny loans unfairly. A weak AML model can miss criminal activity. Regulators call this exposure
The core U.S. rulebook is SR 11-7, guidance issued jointly by the Federal Reserve and the Office of the Comptroller of the Currency (OCC) in 2011. It remains the reference standard in 2026. You can read the primary source here: SR 11-7 Guidance on Model Risk Management.
SR 11-7 is short but demanding. It rests on three ideas.
Someone independent of the model developers must critically review the model. This is called effective challenge. The reviewer needs the competence to understand the math, the influence to force changes, and the independence to say no.
In practice, a bank sets up a Model Risk Management (MRM) function separate from the data science team. The developers build. MRM challenges.
Validation is not a one-time gate. SR 11-7 requires review at development, before deployment, and on an ongoing basis. A scoring model that worked in 2024 may degrade as customer behavior shifts. That decay is called model drift, and monitoring for it is mandatory.
The board and senior management own model risk. There must be a model inventory (a complete register of every model in use), documented policies, and clear roles. An examiner will ask to see the inventory first. A missing model is a governance failure on its own.
Picture the room. Present are the model developer, an MRM validator, a data governancedata governanceData governance is the set of policies, roles, and processes that ensure data is accurate, secure, well-defined, and used responsibly across an organization.Voir la définition complète → lead, and often a compliance officer. They work through a checklist.
Conceptual soundness. Does the model make sense? If a credit model uses ZIP code as a variable, someone will ask whether that is a proxy for race, which would raise fair-lending concerns.
Data quality. Is the training data accurate, complete, and representative? A model trained only on approved borrowers suffers from survivorship bias: it never saw how rejected applicants would have performed.
Outcomes analysis. Does the model actually predict what it claims? Validators backtest predictions against real outcomes.
Implementation testing. Does the deployed code match the approved model? A formula that works in a notebook can break in production.
Back to the examiner's question: "Show me where this variable came from."
Data lineageData lineageData lineage maps how data moves and transforms across systems, from origin to consumption, showing where it came from, what changed it, and where it goes.Voir la définition complète → is the documented path of a data element from its origin, through every transformation, to its use in the model. Think of it as a receipt for every number.
Why examiners obsess over it:
A concrete example. A "debt-to-income ratio" feature looks simple. But income might come from one system, debt from another, and the ratio computed in a third with rounding rules that differ from the source. Each hop is a place errors and rule changes hide.
Modern banks track lineage with metadatametadataDonnées sur les données, informations décrivant le contexte, la structure, la provenance et les caractéristiques d'un asset de données (auteur, date, format, source, définition). tools and version control. Here is the flavor of what a lineage record captures:
feature: debt_to_income_ratio
source_income: core_banking.customer_income # verified monthly
source_debt: credit_bureau.total_obligations # refreshed at pull
transformation: debt / income
null_handling: exclude_if_income_missing
owner: retail_credit_risk
consent_basis: loan_application_terms
last_validated: 2026-01-15Notice the consent_basis line. Lineage and privacy meet here.
A model can only use data the bank is legally allowed to use for that purpose.
In the U.S., the Fair Credit Reporting Act (FCRA) governs how credit data is used and requires that consumers can learn why they were denied. This is why lenders must produce adverse action reasons: specific factors behind a denial. A model that cannot explain its top reasons violates the law, no matter how accurate it is.
Fair-lending laws (the Equal Credit Opportunity Act) prohibit discrimination on protected characteristics. Even if a model never sees race, a correlated variable can produce disparate impact, an outcome that harms a protected group. Validators run fairness tests to catch this.
In the EU and UK, the General Data Protection Regulation (GDPR) adds purpose limitation (data collected for one reason cannot be freely reused), the right to explanation for automated decisions, and strict consent rules.
The practical takeaway: privacy is not a legal afterthought bolted on at the end. It is a design constraint that shapes which features a model may even contain.
🎬 [VIDEO: "Model Risk Management Explained" — youtube.com — a clear overview of SR 11-7 principles and how banks validate models before deployment]
Examiners are cautious about complex machine learning models because they can be hard to interpret. A simple logistic regression (a statistical model that weighs each input) shows exactly how each variable affects the score. A deep neural network may not.
This does not ban complex models. It raises the documentation bar. Banks use tools like SHAP values (a method that attributes a prediction to each input) to explain individual decisions. If a customer is denied, the bank must still generate honest adverse action reasons.
The rule of thumb in the room: if you cannot explain it, you cannot deploy it in a regulated decision.
Vérification des acquis
1. In the context of SR 11-7, what best defines 'model risk'?
2. Why does 'effective challenge' require the reviewer to have independence in addition to competence?
3. A bank separates its Model Risk Management (MRM) function from the data science team. What is the primary purpose of this organizational split?
4. Select ALL correct answers. Which of the following would be considered a 'model' under the banking definition given in the lesson?
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers. Why is data lineage described as the pressure point where most models fail validation?
Sélectionnez toutes les réponses correctes.
Approval is not the finish line. Once a model is live, MRM sets up continuous monitoring.
Performance monitoring watches accuracy over time. If default prediction quality slips, the model may need recalibration.
Population stability checks whether the incoming applicants still resemble the training population. A common metric is the Population Stability Index (PSI), which flags when the input distribution has shifted enough to worry about.
Override tracking records how often humans overrule the model. Frequent overrides suggest the model is not trusted or not fit for purpose.
When a model breaches its thresholds, governance policy dictates escalation: recalibrate, revalidate, or retire.
Boil it down and a bank must demonstrate:
Miss one, and deployment waits. That is why the data science team in our opening scene could not launch on confidence alone.