The dimension of the input data.
The dimension of the output of the LSTM, passed to the dense layer.
The dimension of the output data.
The dropout rate between the LSTM cell and the dense layer.
Return all the LSTM model parameters.
Gives the initial state values of the LSTM (c and h).
If it is necessary to clone states variable or no.
Update the given model parameters.
Make a prediction given an input and state values (c and h).
A vector of shape [inputSize].
LSTM's state value.
LSTM's last output value.
A vector of ones and zeros of shape [outputSize].
Generated using TypeDoc
An LSTM cell with a dense layer on its top.