Financial model-risk extensions for updatesupport
Project description
updatesupport-finance
Financial model-risk extensions for
updatesupport.
updatesupport-finance audits whether a public risk segmentation is stable
enough to support a reported portfolio metric.
The core question is:
If a model report only shows risk by coarse public buckets such as
product x region x FICO band x LTV band, could the reported expected-loss estimate materially change if the hidden mix inside those buckets shifted?
This is a segmentation adequacy check for reported risk metrics. It is designed for model-review and portfolio-monitoring artifacts, not as a replacement for model validation, calibration, backtesting, or statistical uncertainty analysis.
Install directly:
pip install updatesupport-finance
uv add updatesupport-finance
Or through the core package extra:
pip install "updatesupport[finance]"
uv add "updatesupport[finance]"
The package provides finance-oriented row metrics, Q preset aliases, portfolio
compilation, and a model-risk report profile while keeping financial vocabulary
out of the core updatesupport package.
Why This Is Useful
Financial analysts already monitor model performance, population drift, calibration, overrides, and scenario sensitivity. Those checks usually ask whether the model or portfolio changed.
updatesupport-finance asks a different question:
Is the reporting segmentation itself adequate for the metric being reported?
For example, a validation pack may report expected loss by:
productregionfico_bandltv_band
But inside those public buckets, hidden composition may vary by:
- broker channel
- employment type
- vintage
- hardship history
- documentation type
- local housing market
- borrower cashflow pattern
If those hidden subgroups have different expected-loss rates, the public segmentation may not fully support the reported aggregate. The report quantifies that hidden-composition ambiguity and identifies which hidden variables would most improve the public segmentation.
What The Report Separates
The package is intentionally narrow. It separates:
- reported risk estimate: the supplied metric, such as expected loss or default rate
- statistical uncertainty: confidence intervals or model uncertainty supplied by other workflows
- hidden-composition ambiguity: how far the reported metric can move when hidden mix shifts inside fixed public buckets
- refinement recommendations: hidden fields that would make the public representation more stable
This is not a confidence interval and not a full model-risk-management system. It is a reviewable control for one practical question: whether the reporting representation is stable enough for the risk metric.
Analyst Workflow
- Choose public buckets from the model report.
- Choose hidden refinements that are available internally but not shown in the public segmentation.
- Choose the target risk metric.
- Choose a plausible hidden-mix shift preset.
- Set a review threshold for hidden-composition ambiguity.
- Attach the generated Markdown report to a model-review or monitoring pack.
The review status is deliberately simple:
pass: ambiguity and public adequacy checks are within the chosen thresholdsattention required: the public segmentation may need refinement or explicit acceptance of the ambiguity band
Example
import updatesupport_finance as usf
report = usf.model_risk_report(
portfolio,
public=["product", "region", "fico_band", "ltv_band"],
hidden=[
"product",
"region",
"fico_band",
"ltv_band",
"broker_channel",
"employment_type",
"vintage",
],
metric=usf.expected_loss(pd="pd", lgd="lgd"),
exposure="ead",
q=usf.q_portfolio_mix_shift(radius=0.25),
model_id="EL_RETAIL_2026Q2",
portfolio_name="Retail credit portfolio",
as_of_date="2026-06-30",
intended_use="Expected-loss segmentation model review",
ambiguity_limit=0.0025,
public_adequacy_required=False,
)
print(report.to_markdown())
The report answers:
- What is the reported portfolio risk estimate?
- What range is still possible under hidden mix shifts?
- Does the ambiguity exceed the review threshold?
- Which public buckets drive the instability?
- Which hidden fields are most valuable as public refinements?
- Which small public segmentation sits on the stability frontier, and why did it beat nearby alternatives?
A synthetic portfolio example is available in examples/model_risk_portfolio.py
in the source repository:
uv run --package updatesupport-finance python \
packages/updatesupport-finance/examples/model_risk_portfolio.py
The example prints both the finance model-risk report and a core
public_representation_frontier(...) report for the same expected-loss metric.
The frontier section compares baseline versus selected ambiguity, close
dominated alternatives, and any screened-out refinement fields.
To write the Markdown report:
uv run --package updatesupport-finance python \
packages/updatesupport-finance/examples/model_risk_portfolio.py \
--output data/finance_model_risk_report.md
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file updatesupport_finance-0.1.0.tar.gz.
File metadata
- Download URL: updatesupport_finance-0.1.0.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb79769468a269f155554bbd4dd58c0abb94113284abbd6ab2d07197a3998ea2
|
|
| MD5 |
5a8717cdb17aef738b618a84f87061f2
|
|
| BLAKE2b-256 |
821bbc660b0cfd94baf968b622e81e5f71cd24c8f48f40a32258614612af4ee8
|
File details
Details for the file updatesupport_finance-0.1.0-py3-none-any.whl.
File metadata
- Download URL: updatesupport_finance-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e720512042218b71693f5a542e69a947279d00b2e02d4f1b9e612ca51da643c8
|
|
| MD5 |
f54e620e7ecaa05f0245393ddf5aa75f
|
|
| BLAKE2b-256 |
e5352f86c0beca5d623c69190bacb2aa8dfd4cc986106b5cda805d3e66a8bc48
|