Phased LSTM

Phased LSTM

Standard LSTM & Phased LSTM

Features std lstm PHASED LSTM
Sampling Rate Synchronous Asynchronous
Convergence Slow Fast
Computation Large Small
Performance Low High
Memory decay Every time step Only open period

Note: Information can flow pass Time Gate in both its open period and close period.


Phased LSTM

Phased LSTM=Std LSTM+Time Gate

LSTM formula:

Phased LSTG , formula only (3) and (5) are changed:

Time Gate formula:

Variable meaning
ct cell activation vector
xt input feature vector
ht hidden output vector
σi,σf,σo sigmoid
σc,σh tanh

Inplementation

Phased LSTM implementation in Tensorflow:
https://github.com/Enny1991/PLSTM

你可能感兴趣的:(深度学习论文笔记)