rnn - cccbook/aijs GitHub Wiki

RNN -- 循環神經網路

  1. RNN 的訓練要用 BPTT (Back Propagation Through Time)
  2. 學習的時候要做 Clipping ,限制梯度範圍,這樣才不會一下飛出去!(導致 NaN : Not a Number 發生)

影片

文章:

  1. The Unreasonable Effectiveness of Recurrent Neural Networks
  2. Understanding LSTM Networks

Attention -- hierarchical neural attention encoder