Concept Drift
Concept drift is what happens when the real-world relationship a machine learning model was built to capture changes over time, so the patterns the model learned no longer match current conditions. As commonly described, this shift can make a model's predictions less reliable even if the model itself has not changed. It reflects an evolution in the underlying problem the model is trying to solve.
Concept drift refers to a change over time in the statistical relationship between input data (features) and the target variable a model predicts, such that the previously learned mapping no longer holds. In many treatments it is framed as an evolution of the data-generating process that can invalidate a fitted model and degrade predictive performance. It is typically distinguished from changes in input distribution alone; here the emphasis is on the shifting input-to-target relationship rather than on model performance metrics per se, though drift is a common driver of performance degradation. Note that terminology varies across the literature, and some sources use 'drift' broadly to encompass related phenomena, so scope should be confirmed against the specific framework in use.
Why it matters
Concept drift matters because a model that performed well at deployment can become progressively less reliable without any change to its code, weights, or configuration. As commonly described, the relationship the model learned reflects conditions at the time of training; when the underlying problem evolves, that learned mapping can quietly stop matching current reality. For teams responsible for model risk, this means model performance can degrade silently, and decisions based on the model's outputs may become misaligned with actual conditions before anyone notices.
From a model risk management perspective, concept drift is one reason ongoing monitoring is typically treated as a core control rather than a one-time validation activity. A model that is accurate at go-live is not guaranteed to remain accurate, so frameworks commonly emphasize periodic revalidation, performance tracking, and mechanisms to detect when a model's assumptions may no longer hold. Drift is a common driver of performance degradation, though it is worth distinguishing the underlying shift in the input-to-target relationship from the observed decline in metrics that may result from it.
It is important not to overstate what drift detection accomplishes. Monitoring and retraining reduce and manage the risk that a model becomes stale; they do not eliminate it. Terminology also varies across the literature, and some sources use 'drift' broadly to cover related phenomena such as changes in input distribution alone. Practitioners should confirm the specific definition and scope in use within their own framework rather than assuming a single authoritative meaning applies across all contexts.
Who it's relevant to
Inside Concept Drift
Common questions
Answers to the questions practitioners most commonly ask about Concept Drift.