Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 1019 Bytes

README.md

File metadata and controls

16 lines (9 loc) · 1019 Bytes

Time-Aware Long-Short Term Memory

(modifications of original code from https://github.com/illidanlab/T-LSTM) Regularity of the duration between consecutive elements of a sequence is a property that does not always hold. An architecture that can overcome this irregularity is necessary to increase the prediction performance.

Time Aware LSTM (T-LSTM) was designed to handle irregular elapsed times. T-LSTM is proposed to incorporate the elapsed time information into the standard LSTM architecture to be able to capture the temporal dynamics of sequential data with time irregularities. T-LSTM decomposes memory cell into short-term and long-term components, discounts the short-term memory content using a non-increasing function of the elapsed time, and then combines it with the long-term memory.

Compatibility

Code is compatible with tensorflow version 1.6.0 and Pyhton 3.6.4.

Modifications

  1. Allow users to customize the number of encoders and decoders and the dimensions within each encoder/decoder.