179 questions
No questions match those filters.
What's the difference between data drift and concept dr...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansThe distinction matters because the two failure modes call for different fixes, and conflating them leads to wasted retraining cycles or, worse, no action when action was actually needed. Data drift means the population feeding the model has shifted — new users, a new season, a new market — but the underlying pattern the model learned is still valid for that shifted population. Concept drift means the pattern itself broke: the same feature values now correlate with a different outcome than they used to, which is a much more serious problem because no amount of matching the current distribution fixes it — the model’s learned relationship is simply wrong now.
Detecting either statistically usually starts with the Population Stability Index on each feature: below roughly 0.1 is stable, 0.1–0.25 warrants a closer look, and above 0.25 signals real drift worth acting on. A Kolmogorov-Smirnov test does similar work for continuous features, and chi-square testing covers categorical ones. The response differs by type — pure data drift might just need updated feature normalization or closer monitoring, while concept drift requires retraining on fresh data, since the model’s core assumptions no longer hold. A fraud model watching PSI on transaction-amount features drift past 0.25 three months post-launch is a concept-drift signal specifically when the accuracy drop accompanies it — fraud tactics changed, not just spending habits.