From 81bee390556e9d279d26f7d84213c61db5e6725a Mon Sep 17 00:00:00 2001 From: skaae Date: Mon, 4 Jan 2016 15:41:17 +0100 Subject: [PATCH] missing odot in lstm docs --- lasagne/layers/recurrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lasagne/layers/recurrent.py b/lasagne/layers/recurrent.py index 15cf7b93..01fea9b6 100644 --- a/lasagne/layers/recurrent.py +++ b/lasagne/layers/recurrent.py @@ -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)