Drift Detection
Drift detection is the practice of watching a deployed machine learning model and the data it receives to spot when things change over time. Because the real-world data a model sees in production can gradually differ from the data it was trained on, its predictions can become less reliable. Detecting this drift early helps teams decide when a model may need review, retraining, or other corrective action.
Drift detection is the systematic process of comparing current production data distributions against a reference distribution (typically the training data) to identify statistically significant shifts, and continuously monitoring for changes over time. As commonly framed, it can target the global data distributions across a dataset to determine whether inputs have shifted meaningfully. In practice, drift detection is applied to detect changes such as data drift, where the statistical properties of production input data change relative to training conditions. Note that practitioners often distinguish drift in the input data from degradation in model performance itself; the two are related but not identical, and the specific detection methods and thresholds vary by framework and use case. This entry describes the general concept and does not endorse a single authoritative method, threshold, or tooling approach.
Why it matters
A model that performed well at deployment can become less reliable as the production environment changes. Because the statistical properties of input data observed in production can shift relative to the conditions under which a model was trained, predictions may degrade in ways that are not obvious from the model code or its original validation results. Drift detection matters because it gives teams an early, evidence-based signal that a model may no longer be operating within the assumptions it was built on, prompting review, retraining, or other corrective action before poor predictions accumulate.
Who it's relevant to
Inside Drift Detection
Common questions
Answers to the questions practitioners most commonly ask about Drift Detection.