bcui6611 / timeseries-anomaly-detection

detect anomalies in time series data using deeplearning

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

timeseries anomaly detection

Intro

The goal of this project is to experiment a software architecture to detect anomalies in timeseries data. Main concerns would include :

  • timeseries data extraction
  • prediction / anomaly detection model development and training

Here is a list of frameworks that may be of interest :

Exploring our dataset

The dataset used to experiment our architecture contains Internet traffic data (in bits) from an ISP. Aggregated traffic in the United Kingdom academic network backbone. It was collected between 19 November 2004, at 09:30 hours and 27 January 2005, at 11:11 hours. Data collected at five minute intervals.

Alt text

Training the model

$ cd anomaly-detection-train
$ mvn spring-boot:run

So as to reuse trained model, two files are saved after the training process :

  • anomaly-detection-network-model_<version>.zip : trained neural network model
  • anomaly-detection-data-normalizer_<version> : data normalizer used for data engineering

See dl4j - Saving and Loading a Neural Network, for details on saving and loading a neural network.

Making predictions

Making predictions will consist in building a data flow from a source of internet traffic observation to the prediction service.

Data flow will basically involved 3 message-driven microservice applications :

  • anomaly-detection-source-file, to stream internet traffic observation
  • anomaly-detection-predict microservice application, to make prediction based on input streamed internet traffic observation
  • anomaly-detection-sink, to display prediction

You will need Kafka [used as messaging middleware] to be installed and running.

step 1 - start anomaly-detection-predict microservice application

$ cd anomaly-detection-predict
$ mvn spring-boot:run

step2 - start anomaly-detection-sink microservice application

$ cd anomaly-detection-sink
$ mvn spring-boot:run

step 3 - start anomaly-detection-source-file microservice application

This will make the data flow.

$ cd anomaly-detection-source-file
$ mvn spring-boot:run

Build

$ mvn clean package

About

detect anomalies in time series data using deeplearning


Languages

Language:Java 49.5%Language:Shell 29.6%Language:Batchfile 21.0%