Concept Drift#
When the relationship between inputs and target changes over time.
Important
✨ AI-generated content. This page was written with the assistance of an AI language model and is provided as a learning aid. Despite careful review, it may still contain mistakes, omissions, or out-of-date information. Whether you are new to the topic, a team lead, or a senior practitioner, treat it as a starting point rather than an authoritative reference: read it critically and independently verify anything you act on (code, commands, figures, and factual claims) against official documentation and primary sources before relying on it.
What it is#
Concept drift is a change in the relationship between inputs and the outcome — formally a shift in \(P(Y \mid X)\). The inputs can look identical, but what they mean for the target has changed: the rules the model learned no longer hold.
Why it’s dangerous#
Because the input distribution may look normal, concept drift is hard to detect — the model keeps predicting confidently while being wrong. It shows up as a decline in accuracy, F1, or business KPIs, which is why performance is monitored on labeled or delayed data, aided by detectors like ADWIN, DDM, or Page-Hinkley.
Its forms and fix#
Drift can be sudden (a regime change), gradual, incremental, or recurring (seasonal patterns that revert). The remedy is retraining on fresh labeled data that reflects the new relationship — the reason production models need continuous monitoring and update loops.
Theme: Distribution Shift & Drift · All terminology
Hint
Mind map — connected ideas
Data Drift · Label Drift (a.k.a. Target Drift) · Covariate Drift (a.k.a. Covariate Shift) · Drift Detection · Dataset Shift · Model Stability
Hint
More in Distribution Shift & Drift
Cardinality in Categorical Data · Categorical Drift · Categorical Explosions · Classifier Two-Sample Tests (C2STs) · Covariate Drift (a.k.a. Covariate Shift) · Data Drift · Dataset Shift · Drift Detection · Drift Guardrails · Energy Distance · Jensen–Shannon (JS) Divergence · KS shift (Kolmogorov–Smirnov shift) · Kullback–Leibler (KL) Divergence · Label Drift (a.k.a. Target Drift)
See also
Source article Adapted (context, re-expressed) in our own words from: Concept Drift (insightful-data-lab.com).