Population Stability Index for Live Models
A single number, the PSI, that measures how much the distribution of a model's inputs (or scores) has drifted from the data it was built on — the standard early-warning check for a live model quietly seeing a different world than the one it was trained for.
Prerequisites: Feature Drift Detection in Production
A model trained on last year's data assumes the world it sees live looks statistically similar to the world it learned from. When that stops being true — a feature's typical range shifts, or the mix of regimes changes — the model's predictions quietly become less reliable, often with no obvious error message. The Population Stability Index (PSI) is a simple way to catch this: bucket a feature (or the model's output score) into ranges, compare what fraction of observations falls in each bucket now versus during training, and combine the differences into one number.
where is the fraction of current observations in bucket and is the fraction from the training period. Buckets where the current and training proportions match contribute almost nothing; buckets whose share has shifted a lot contribute more, and the log term punishes large relative shifts especially hard.
Worked example. Say a momentum feature was split into 5 buckets during training with proportions . Live, the top bucket has grown to 0.35 and the bottom shrunk to 0.10, others roughly unchanged: . The dominant terms come from the shifted buckets: and , plus a smaller contribution from the 0.20 to 0.15 bucket; summing all five gives . The common rule of thumb is PSI below 0.1 is stable, 0.1–0.25 is worth watching, above 0.25 signals meaningful drift — so 0.17 here would flag the feature for a closer look, not an automatic shutdown.
PSI compares the bucketed distribution of a feature or score today against the distribution it had at training time and returns one number; conventional thresholds (roughly 0.1 and 0.25) flag "watch" versus "drifted," making it a cheap, standard first check for whether a live model is still seeing the world it was built for.
Further reading
- Practitioner convention from credit-risk model monitoring, adapted to quant use