Skip to content

Commit d5f1a34

Browse files
committed
Merge pull request lisa-lab#108 from carriepl/lstm_tutorial
Fixes in LSTM tutorial
2 parents 76c1eae + f97fa23 commit d5f1a34

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

doc/lstm.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ output gates and, subsequently, their outputs :
124124
.. math::
125125
:label: 5
126126

127-
o_t = \sigma(W_o x_t + U_o h_{t-1} + V_o C_t + b_1)
127+
o_t = \sigma(W_o x_t + U_o h_{t-1} + V_o C_t + b_o)
128128

129129
.. math::
130130
:label: 6
@@ -144,7 +144,7 @@ matrix :math:`V_o` and equation :eq:`5` is replaced by equation :eq:`5-alt` :
144144
.. math::
145145
:label: 5-alt
146146

147-
o_t = \sigma(W_o x_t + U_o h_{t-1} + b_1)
147+
o_t = \sigma(W_o x_t + U_o h_{t-1} + b_o)
148148

149149
Our model is composed of a single LSTM layer followed by an average pooling
150150
and a logistic regression layer as illustrated in Figure 2 below. Thus, from
@@ -235,8 +235,9 @@ Thank you!
235235
Contact
236236
=======
237237

238-
Please email `Kyunghyun Cho <http://www.kyunghyuncho.me/>`_ for any
239-
problem report or feedback. We will be glad to hear from you.
238+
Please email `Pierre Luc Carrier <mailto:carriepl..at..iro.umontreal.ca>`_ or
239+
`Kyunghyun Cho <http://www.kyunghyuncho.me/>`_ for any problem report or
240+
feedback. We will be glad to hear from you.
240241

241242
References
242243
++++++++++

0 commit comments

Comments
 (0)