lin-shuyu / VAE-LSTM-for-anomaly-detection

We propose a VAE-LSTM model as an unsupervised learning approach for anomaly detection in time series.
427 stars 83 forks source link

About the delay in the anomaly detection #20

Open Statisticss opened 1 year ago

Statisticss commented 1 year ago

During the evaluation I found the detected anomalies tend to lag for a while after the true anomalies. This phenomenon was also mentioned in your paper: "A potential downside of our method is the delay in the anomaly detection for some cases." I'm wondering if this is due to the large detect window size, e.g., in your demo the window size is 48*12=576, which means when an anomaly occurs at time t, the prediction error is calculated over time window [t-576, t]. The anomaly will be averaged out by this large time window.