junxnone / tio

Log
Other
10 stars 5 forks source link

LSTM —— Long Short Term Memory #29

Open junxnone opened 6 years ago

junxnone commented 6 years ago

Reference

Brief

RNN vs LSTM

RNN image
LSTM image

Gate - 门

image sigmoid + 按位乘 组成
单元状态 image
遗忘门 image
输入门 image
输出门 image
状态更新 image

Bi-directional LSTM - 双向 LSTM

后续改进

peephole image
coupled image
GRU image

History

Year Name Description
1997 LSTM Hochreiter & Schmidhuber 提出
junxnone commented 4 years ago

28