Skip to content

Commit

Permalink
Merge pull request #564 from skaae/lstm_typo
Browse files Browse the repository at this point in the history
missing odot in lstm docs
  • Loading branch information
f0k committed Jan 4, 2016
2 parents deef558 + 81bee39 commit 290379e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lasagne/layers/recurrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ class LSTMLayer(MergeLayer):
f_t &= \sigma_f(x_t W_{xf} + h_{t-1} W_{hf}
+ w_{cf} \odot c_{t-1} + b_f)\\
c_t &= f_t \odot c_{t - 1}
+ i_t\sigma_c(x_t W_{xc} + h_{t-1} W_{hc} + b_c)\\
+ i_t \odot \sigma_c(x_t W_{xc} + h_{t-1} W_{hc} + b_c)\\
o_t &= \sigma_o(x_t W_{xo} + h_{t-1} W_{ho} + w_{co} \odot c_t + b_o)\\
h_t &= o_t \odot \sigma_h(c_t)
Expand Down

0 comments on commit 290379e

Please sign in to comment.