提交 3b0eff61 编写于 作者: Y Yibing Liu

Format the writing in doc of dynamic_lstm

上级 f46257fa
...@@ -249,22 +249,23 @@ def dynamic_lstm(input, ...@@ -249,22 +249,23 @@ def dynamic_lstm(input,
h_t & = o_t \odot act_h(c_t) h_t & = o_t \odot act_h(c_t)
where the :math:`W` terms denote weight matrices (e.g. :math:`W_{xi}` is the matrix where the :math:`W` terms denote weight matrices (e.g. :math:`W_{xi}` is
of weights from the input gate to the input), :math:`W_{ic}, W_{fc}, W_{oc}` the matrix of weights from the input gate to the input), :math:`W_{ic}, \
are diagonal weight matrices for peephole connections. In our implementation, W_{fc}, W_{oc}` are diagonal weight matrices for peephole connections. In
we use vectors to reprenset these diagonal weight matrices. The :math:`b` terms our implementation, we use vectors to reprenset these diagonal weight
denote bias vectors (:math:`b_i` is the input gate bias vector), :math:`\sigma` matrices. The :math:`b` terms denote bias vectors (:math:`b_i` is the input
is the non-line activations, such as logistic sigmoid function, and gate bias vector), :math:`\sigma` is the non-line activations, such as
:math:`i, f, o` and :math:`c` are the input gate, forget gate, output gate, logistic sigmoid function, and :math:`i, f, o` and :math:`c` are the input
and cell activation vectors, respectively, all of which have the same size as gate, forget gate, output gate, and cell activation vectors, respectively,
the cell output activation vector :math:`h`. all of which have the same size as the cell output activation vector :math:`h`.
The :math:`\odot` is the element-wise product of the vectors. :math:`act_g` and :math:`act_h` The :math:`\odot` is the element-wise product of the vectors. :math:`act_g`
are the cell input and cell output activation functions and `tanh` is usually and :math:`act_h` are the cell input and cell output activation functions
used for them. :math:`\\tilde{c_t}` is also called candidate hidden state, and `tanh` is usually used for them. :math:`\\tilde{c_t}` is also called
which is computed based on the current input and the previous hidden state. candidate hidden state, which is computed based on the current input and
the previous hidden state.
Set `use_peepholes` False to disable peephole connection. The formula
Set `use_peepholes` to `False` to disable peephole connection. The formula
is omitted here, please refer to the paper is omitted here, please refer to the paper
http://www.bioinf.jku.at/publications/older/2604.pdf for details. http://www.bioinf.jku.at/publications/older/2604.pdf for details.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册