Concept Drift¶
Core Idea¶
Concept drift is the silent loss of a learned rule's validity when the relationship between the signals it reads and the outcomes it predicts changes over time — even though the rule's inputs, mechanism, and outward confidence are unchanged. Accuracy is a joint property of the rule and a generating process the rule cannot monitor.
How would you explain it like I'm…
The Rule That Went Stale
The World Moved, The Rule Didn't
Silent Validity Decay
Broad Use¶
- Machine learning: deployed models degrade as customer mix, fraud tactics, prices, or sensors evolve; model monitoring exists to catch it.
- Fraud and security: the adversary's whole job is to drift the concept faster than defenders can retrain.
- Epidemiology: evolving case definitions (long COVID, the 1985/1987/1993 AIDS definitions) make pre- and post-revision time series non-comparable.
- Journalism: words like "moderate" or "elite" keep their surface form while their referent moves, invalidating older coding schemes.
- Policy and law: regulatory categories ("vehicle," "platform," "employer") drift as the phenomena they name evolve, even with untouched text.
- Finance: factor-return relationships break across regime changes.
Clarity¶
Shows that the same rule on the same input can be right one year and wrong the next, with no internal warning, and that confidence is not calibration — high self-reported certainty is no evidence against drift.
Manages Complexity¶
Compresses every way the world could change into a small typology of drift modes (covariate, prior, concept) and a toolbox of countermeasures keyed to those modes.
Abstract Reasoning¶
Supports drift-mode identification, the stationarity audit (carry an explicit assumption and a falsification procedure), and adversarial-drift recognition (outpace the adversary's learning rate).
Knowledge Transfer¶
- Epidemiology: covariate-versus-concept shift maps onto "the patient population changed" versus "the pathogen's presentation changed."
- Policy analysis: a category whose text is unchanged but whose referent moved suggests periodic review and sunset-and-reauthorise cadences.
- Finance to surveillance: regime-change detection methods from econometrics transfer to disease-surveillance time series.
Example¶
A deployed fraud model keeps emitting confident scores while its catch rate quietly falls, because its confidence is anchored to last quarter's patterns; the fix is an adversarial cadence — active sampling biased toward recent low-margin transactions — not regularization.
Relationships to Other Primes¶
Parents (3) — more general patterns this builds on
- Concept Drift is a kind of Calibrated Rule versus Moving World — The file: concept_drift is the CHANNEL where P(y|x) moves (the input-output relationship shifts) — one channel of the decay. Clean child; nearest neighbor (0.74). BUT see coordination flag in rationale.
- Concept Drift is a kind of Non-Stationary Objective — The file: concept_drift is 'one substrate-specific case' — the ML instance (a data distribution shifting under a deployed model) of the substrate-neutral non-stationary-objective structure. concept_drift is a CANDIDATE (CAND-R2-022-08), not yet canonical, so this is a candidate-link parent rather than a corpus reparent.
- Concept Drift presupposes, typical Temporal Decay and Degradation — A learned rule loses validity OVER TIME — but the RULE is intact and the WORLD moved (the relationship degraded), distinct from the substrate physically decaying. Tentative time-family lineage; the file explicitly distinguishes them, so this is a weak presupposes, not a subsumption.
Path to root: Concept Drift → Non-Stationary Objective
Not to Be Confused With¶
- Concept Drift is not Overfitting because drift is a post-fit failure (the rule was correct and silently became wrong), whereas overfitting is a fit-time failure (the rule memorised noise and was wrong from day one).
- Concept Drift is not Temporal Decay and Degradation because in drift the rule is intact and the world it was calibrated against moved, whereas decay is the substrate itself wearing out.
- Concept Drift is not a Self-Defeating Prediction because drift's world usually moves independently of the rule, whereas a self-defeating prediction changes the world because it was acted on.