What is Model Drift?
Model Drift is the gradual decline in an AI or machine learning model's accuracy over time as real-world data patterns shift away from the data the model was originally trained on. Left undetected, model drift causes predictions to quietly become less reliable even though the model itself hasn't changed.
TL;DR
Model Drift is when a model's real-world accuracy quietly degrades over time because the data it now sees no longer matches what it was trained on.
Formula
Model Drift is measured by tracking a model's accuracy, error rate, or prediction distribution over time and comparing it against its original baseline performance, rather than a single fixed formula.
Why It Matters
Model drift matters because a model doesn't announce that it's gotten worse, it just keeps producing confident-looking predictions that are quietly less accurate than they used to be. Teams that don't monitor for drift end up trusting outputs that have already degraded, which is especially costly in cases like fraud detection where a slipping model directly translates into missed fraud or false alarms. Because drift is caused by the real world changing rather than a bug in the model itself, it can't be fixed by a code review, it requires ongoing monitoring and periodic retraining on fresh data. Catching drift early also helps teams decide whether a small retraining pass is enough or whether the model's whole approach needs rethinking. Ignoring it long enough eventually erodes trust in the model entirely, even after it's fixed.
Example
A fraud detection model launches with 95% accuracy on historical data, but as fraud patterns evolve over the following year, monthly accuracy checks show it has quietly slipped to 87% without any code change to the model itself. That gap is model drift, and it is why production models are typically monitored on an ongoing basis and periodically retrained on fresh data, rather than deployed once and assumed to perform at their original accuracy indefinitely.
Frequently Asked Questions
Related Terms