🌊  Concept Drift

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



See also

Source article Adapted (context, re-expressed) in our own words from: Concept Drift (insightful-data-lab.com).

Tags: purpose: reference topic: terminology level: advanced