提交 51b8a6d1 authored 作者: Frederic Bastien's avatar Frederic Bastien

small nextml slide fix

上级 2488035f
...@@ -1074,7 +1074,7 @@ h_t = o_t * tanh(C_t) ...@@ -1074,7 +1074,7 @@ h_t = o_t * tanh(C_t)
\begin{frame} \begin{frame}
\frametitle{Tutorial LSTM} \frametitle{Tutorial LSTM}
The model we used in this tutorial is a variation of the standard LSTM model. In this variant, the activation of a cell’s output gate does not depend on the memory cell’s state $C_t$. This allows us to perform part of the computation more efficiently (see the implementation note, below, for details). This means that, in the variant we have implemented, there is no matrix $V_o$ and equation (5) is replaced by equation (7) : The model we used in this tutorial is a variation of the standard LSTM model. In this variant, the activation of a cell’s output gate does not depend on the memory cell’s state $C_t$. This allows us to perform part of the computation more efficiently (see next slide, for details). This means that, in the variant we have implemented, there is no matrix $V_o$ and equation (5) is replaced by equation (7) :
\begin{equation} \begin{equation}
o_t = \sigma(W_o x_t + U_o h_{t-1} + b_1) o_t = \sigma(W_o x_t + U_o h_{t-1} + b_1)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论