Data Drift
Data drift is when the input data feeding a machine learning model changes over time so that it no longer resembles the data the model was originally trained on. This typically happens after a model is deployed and used in production, and it can cause the model's outputs to become less reliable. Because the world the model observes keeps shifting, drift is often treated as an ongoing risk that requires monitoring rather than a one-time problem.
Data drift refers to a change over time in the statistical properties and characteristics of the input data supplied to a machine learning model, typically observed once the model is in production. As commonly defined, it describes divergence between the distribution of live input data and the distribution present in the training data. Practitioners should note that data drift is frequently conflated with concept drift, but the two are not strictly identical: some sources treat 'data drift,' 'concept drift,' and 'dataset shift' as synonyms, while others reserve concept drift for changes in the relationship between inputs and the target variable. Data drift is also distinct from model performance degradation: drift is a potential cause of degradation and a monitored input signal, not the measured decline in model performance itself. The evidence here does not establish detailed detection methods or thresholds, and terminology usage varies across sources.
Why it matters
Data drift matters because a machine learning model's reliability depends on the assumption that the data it encounters in production resembles the data it was trained on. When that assumption breaks down, the model may continue to produce outputs while the accuracy or relevance of those outputs quietly declines. In a model risk management context, this makes drift a monitored risk signal rather than a one-time defect to be fixed at development: the world the model observes keeps changing, so drift is treated as an ongoing condition requiring continuous monitoring after deployment.
Because data drift is a potential cause of model performance degradation rather than the degradation itself, treating it as a leading indicator can help organizations identify emerging problems before they translate into materially poorer outputs or decisions. This distinction matters for how controls are designed: monitoring input distributions can surface change earlier than waiting for measured performance metrics to fall, though drift detection alone does not confirm that performance has actually deteriorated.
It is worth noting the limits of what can be said here. The evidence available establishes that drift involves changes in the statistical properties of input data over time, but it does not establish specific detection methods, thresholds, or quantified impacts, and terminology usage varies across sources. Organizations should therefore treat drift monitoring as one component of a broader model monitoring and validation program, not as a standalone guarantee that a model remains fit for use.
Who it's relevant to
Inside Data Drift
Common questions
Answers to the questions practitioners most commonly ask about Data Drift.