PP: Robust Anomaly Detection for Multivariate Time Series through Stochastic Recurrent Neural Network


PROBLEM: OmniAnomaly

multivariate time series anomaly detection + unsupervised

主體思想: input: multivariate time series to RNN ------> capture the normal patterns -----> reconstruct input data by the representations ------> use the reconstruction probabilities to determine anomalies. 

INTRODUCTION: 

1. The first challenge is how to learn robust latent representations, considering both the temporal dependence and stochasticity of multivariate time series. 

-------stochastic RNN + explicit temporal dependence among stochastic variables. 

Stochastic variables are latent representations of input data and their quality is the key to model performance.

Their approach glues GRU and VAE with two key techniques:

  • stochastic variable connection technique: explicitly model temporal dependence among stochastic variables in the latent space. 
  • Planar Normalizing Flows, which uses a series of invertible mappings可逆映射 to learn non-Gaussian posterior distributions in latent stochastic space. 

2. The second challenge is how to provide interpretation to the detected entity-level anomalies, given the stochastic deep learning approaches.

Challenge: 1. capture long-term dependence. 2. capture probability distributions of multivariate time series. 3. how to interpret your results (unsupervised learning) 

EVIDENCE: literature 5 shown that explicitly modeling the temporal dependence are better. 

RELATED WORK: 

 

PRELIMINARIES:

 Problem statement: 以時序數據的個數作為維度,M個TS, x 屬於R[M*N], x_t為一個M維的列向量,

 gru, vae, and stochastic gradient variational bayes

DESIGN

OmniAnomaly structure: returns an anomaly score for x_t. 

  • online detection
  • offline detection
    • data preprocessing: data standardization, sequence segmentation through sliding windows T+1; 
    • input: multivariate time series inside a window, ----------Model training ------------output: an anomaly score for each observation ------- automatic threshold selection;

Detection: detect anomalies based on the reconstruction probability of x_t

Loss function: ELBO; 

Variational inference algorithms: SGVB;

Output: a univariate time series of anomaly scores

Automatic thresholds selection: extreme value theory + peaks-over-threshold; 


1. use GRU to capture complex temporal dependence in x-space. 

2. apply VAE to map observations to stochastic variables.

3. explicitly model temporal dependence among latent space, they propose the stochastic variable connection technique. 

4. adopt planar NF. 

Evaluation:

We use Precision, Recall, F1-Score (denoted as F1) to evaluate the performance of OmniAnomaly. 

Baseline: 

  1. LSTM with nonparametric dynamic thresholding
  2. EncDec-AD
  3. DAGMM
  4. LSTM-VAE
  5. Donut; 采取別的方式使donut適用於multivariate TS.

Supplementary knowledge:

1. VAE: 

inference net qnet + generative net pnet.

2. GRU: gate recurrent unit

Reference

  1. 人人都能看懂的GRU
  2. 變分自編碼器VAE:原來是這么一回事 | 附開源代碼

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM