RLS-CUSUM¶
This section covers how to apply CUSUM detection algorithms for monitoring the performance drifts of instance-based learning models in real-time.
Note
See the Notebook for code implementation details.
RLS-CUSUM based Monitoring¶
Steps to monitor an instance-based model using the CUSUM algorithm:
Generate a prediction with recursive least squares (RLS) model.
Retrieve the true observed value.
Compute residual.
Apply the CUSUM detector on the residuals to identify potential change points.
Update the model parameters with the new data instance.