ADWIN
ADWIN, short for Adaptive Windowing, is an online change-detection algorithm for data streams introduced by Albert Bifet and Ricard Gavaldà. It maintains a variable-length window of the most recent data points and monitors the window for statistically significant changes in the mean of the stream. The goal is to detect concept drift—when the underlying data-generating process changes—without requiring labeled data or prior knowledge of when changes occur.
The core idea is to keep a window W whose size adapts over time. After each new
Key properties include online operation, unsupervised drift detection, and probabilistic guarantees: with probability at least 1
Applications of ADWIN span real-time analytics, sensor networks, and any scenario requiring automatic, parameter-free drift detection
---