TSAD is a Python module created for solving Anomaly Detection problems with time series data. The module is based on deep learning techniques.
The main meaning of this module are:
- Forecast a multivariate Time Series (TS) one point ahead (Also works for univariate TS)
- Compute residuals between forecast and true values
- Apply analysis of residuals (default is Hoteling Statics)
- Plot and return anomalies
This module allows forecast multi-step ahead both multivariate and univariate time series also.
As forecasting algorithms were implemented or will be implemented:
- A simple one-layer LSTM network (LSTM)
- A two-layer LSTM network (DeepLSTM)
- A bi-directional LSTM network (BLSTM)
- LSTM encoder-decoder (EncDec-AD)
- LSTM autoencoder (LSTM-AE);
- Convolutional LSTM network (ConvLSTM)
- Convolutional Bi-directional LSTM network (CBLSTM)
- Multi-Scale Convolutional Recurrent Encoder-Decoder (MSCRED)
Actually, the possibility of the module allows you to use any own forecasting algorithm, computer of residuals, or evaluator of residuals.
!!! **Requerements for input data **
Time series data without TODO
Pypi:
pip install -U tsad
- python==3.7.6
- numpy>=1.20.0
- pandas>=1.0.1
- matplotlib>=3.1.3
- scikit-learn>=0.24.1
- torch==1.5.0
Documentation will have been published later.