Update LSTM documentation.

This commit is contained in:
Ryan Curtin
2019-11-05 23:11:03 -05:00
parent e762d114f4
commit 7a649a8dee
2 changed files with 8 additions and 0 deletions
@@ -36,6 +36,10 @@ namespace ann /** Artificial Neural Network. */ {
* Note that FastLSTM network layer does not use peephole connections between
* the cell and gates.
*
* Note also that if a FastLSTM layer is desired as the first layer of a neural
* network, an IdentityLayer should be added to the network as the first layer,
* and then the FastLSTM layer should be added.
*
* For more information, see the following.
*
* @code
+4
View File
@@ -31,6 +31,10 @@ namespace ann /** Artificial Neural Network. */ {
* h &=& o \cdot tanh(c)
* @f}
*
* Note that if an LSTM layer is desired as the first layer of a neural network,
* an IdentityLayer should be added to the network as the first layer, and then
* the LSTM layer should be added.
*
* For more information, see the following.
*
* @code