|
| | FastLSTM () |
| | Create the Fast LSTM object. More...
|
| |
| | FastLSTM (const size_t inSize, const size_t outSize, const size_t rho=std::numeric_limits< size_t >::max()) |
| | Create the Fast LSTM layer object using the specified parameters. More...
|
| |
| template<typename InputType , typename ErrorType , typename GradientType > |
| void | Backward (const InputType &&input, ErrorType &&gy, GradientType &&g) |
| | Ordinary feed backward pass of a neural network, calculating the function f(x) by propagating x backwards trough f. More...
|
| |
| OutputDataType const & | Delta () const |
| | Get the delta. More...
|
| |
| OutputDataType & | Delta () |
| | Modify the delta. More...
|
| |
| template<typename InputType , typename OutputType > |
| void | Forward (InputType &&input, OutputType &&output) |
| | Ordinary feed forward pass of a neural network, evaluating the function f(x) by propagating the activity forward through f. More...
|
| |
| template<typename InputType , typename ErrorType , typename GradientType > |
| void | Gradient (InputType &&input, ErrorType &&error, GradientType &&gradient) |
| |
| OutputDataType const & | Gradient () const |
| | Get the gradient. More...
|
| |
| OutputDataType & | Gradient () |
| | Modify the gradient. More...
|
| |
| OutputDataType const & | OutputParameter () const |
| | Get the output parameter. More...
|
| |
| OutputDataType & | OutputParameter () |
| | Modify the output parameter. More...
|
| |
| OutputDataType const & | Parameters () const |
| | Get the parameters. More...
|
| |
| OutputDataType & | Parameters () |
| | Modify the parameters. More...
|
| |
| void | Reset () |
| |
| void | ResetCell (const size_t size) |
| |
| size_t | Rho () const |
| | Get the maximum number of steps to backpropagate through time (BPTT). More...
|
| |
| size_t & | Rho () |
| | Modify the maximum number of steps to backpropagate through time (BPTT). More...
|
| |
| template<typename Archive > |
| void | serialize (Archive &ar, const unsigned int) |
| | Serialize the layer. More...
|
| |
template<typename InputDataType = arma::mat, typename OutputDataType = arma::mat>
class mlpack::ann::FastLSTM< InputDataType, OutputDataType >
An implementation of a faster version of the Fast LSTM network layer.
Basically by combining the calculation of the input, forget, output gates and hidden state in a single step. The standard formula changes as follows:
Note that FastLSTM network layer does not use peephole connections between the cell and gates.
For more information, see the following.
* @article{Hochreiter1997,
* author = {Hochreiter, Sepp and Schmidhuber, J\"{u}rgen},
* title = {Long Short-term Memory},
* journal = {Neural Comput.},
* year = {1997}
* }
*
- See Also
- LSTM for a standard implementation of the LSTM layer.
- Template Parameters
-
| InputDataType | Type of the input data (arma::colvec, arma::mat, arma::sp_mat or arma::cube). |
| OutputDataType | Type of the output data (arma::colvec, arma::mat, arma::sp_mat or arma::cube). |
Definition at line 61 of file fast_lstm.hpp.