Concept Drift: 8 Detection Methods
There is a wide range of techniques that can be applied for detecting concept drift. Becoming familiar with these detection...
🤜🤛 Aporia partners with Google Cloud to bring reliability and security to AI Agents - Read more
The idea of contextual approaches is to assess the difference between the train set and the test set. When the difference is significant that can indicate that there is a drift in the data.
The idea of Tree Features is to train a relatively simple tree on the data and add prediction timestamp as one of the features. As a tree model can be used also for feature importance, we can know how the time affects the data and at which point. Moreover, we can look at the split created by the timestamp and we can see the difference between the concepts before and after the split.
In the image above we can see that the date feature is at the root and that means that this feature has the highest information gain, so that means that on the July 22nd their may have occurred a drift in the data
Read more about these concepts in our articles Concept drift in machine learning 101 and 8 Concept Drift Detection Methods.