Skip to content

Commit

Permalink
RNN
Browse files Browse the repository at this point in the history
  • Loading branch information
pchavanne committed Jan 28, 2017
1 parent 1e37ac4 commit 83e5b0d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions yadll/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,7 @@ class LSTM(Layer):
Long Short Term Memory
.. math ::
i_t &= \sigma(x_t.W_{xi} + h_{t-1}.W_{hi} + b_i) \\
f_t &= \sigma(x_t.W_{xf} + h_{t-1}.W_{hf} + b_f) \\
C_t &= \sigma(x_t.W_{xc} + h_{t-1}.W_{hc} + b_c) \\
Expand Down

0 comments on commit 83e5b0d

Please sign in to comment.