Skip to content

JinzhiLin/AE_ts

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Auto encoder for time series

This repo presents a simple auto encoder for time series. It visualizes the embeddings using both PCA and tSNE. I show this on a dataset of 5000 ECG's. The model doesn't use the labels during training. Yet, the produced clusters visually separate the classes of ECG's.

People repeatedly ask me how to find patterns in time series using ML. The usual wavelet transforms and other features fail to yield results. They wonder what ML has to offer.

  • For categorical data, a usual choice are techniques like PCA, tSNE.
  • For images, a usual choice is convolutional auto encoders
  • For time series, what is the usual choice?
    • This repo implements a recurrent auto encoder

Why use a Recurrent Neural Network in an auto encoder?

  • The length of time series may vary from sample to sample. Conventional techniques only work on inputs of fixed size.
  • The patterns in time series can have arbitrary time span and be non stationary. The recurrent neural network can learn patterns in arbitrary time scaling. The convolutional net, however, assumes only stationary patterns

The network

From here on, RNN refers to our Recurrent Neural Network architecture, the Long Short-term memory Our network in AE_ts_model.py has four main blocks

  • The encoder is a RNN that takes a sequence of input vectors
  • The encoder to latent vector is a linear layer that maps the final hidden vector of the RNN to a latent vector
  • The latent vector to decoder is a linear layer that maps the latent vector to the input vector for the decoder
  • The decoder is a RNN that takes this single input vector and maps to a sequence of output vectors

Training Objective

An auto encoder learns the identity function, so the sequence of input and output vectors must be similar. In our case, we take a probabilistic approach. Every output is a tuple of a mean, mu and standard deviation. Let this mu and sigma parametrize a Gaussian distribution. Now we minimize the log-likelihood of the input under this distribution. We train this using backpropagation into the weights of the encoder, decoder and linear layers.

Example data

I showcase the recurrent auto encoder on a dataset of 5000 ECG's. Accurately named ECG5000 on the UCR archive. I choose ECG, because humans understand them easily. Yet, their complexity remains challenging enough for a machine learning model.

Here are some examples, each column represents another input class examples

Results

We run the recurrent auto encoder with a 20D latent space. The following figure plots the latent vectors with both PCA and tSNE. latent_vectors

This figure shows that the latent space exhibits structure. We color the vectors with their corresponding labels. The light blue and dark blue labels obviously cluster in different parts of the space. Interestingly, the lower left corner in the tSNE shows another cluster of orange points. That might be interesting for doctors to look at. (Note that the class distributions are highly unbalanced. The orange and greeen colored data occur less frequently)

##Conclusion We present an auto encoder that learns structure in the time-series. Training is unsupervised. When we color the latent vectors with the actual labels, we show that the structure makes sense.

Versions

I get repeated questions to update the repo for newer library versions. I cannot guarantee this as I have many projects on hand. This repo works with

  • Python 3.5
  • Tensorflow 1.2
  • Numpy 1.13.1
  • Matplotlib 2.0.0

As always, I am curious to any comments and questions. Reach me at romijndersrob@gmail.com

About

Auto encoder for time series

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%