pub struct LSTM { /* private fields */ }Expand description
A Long Short-Term Memory (LSTM) layer.
https://en.wikipedia.org/wiki/Long_short-term_memory
Trait Implementations§
source§impl RNN for LSTM
impl RNN for LSTM
type State = LSTMState
source§fn zero_state(&self, batch_dim: i64) -> LSTMState
fn zero_state(&self, batch_dim: i64) -> LSTMState
A zero state from which the recurrent network is usually initialized.
source§fn step(&self, input: &Tensor, in_state: &LSTMState) -> LSTMState
fn step(&self, input: &Tensor, in_state: &LSTMState) -> LSTMState
Applies a single step of the recurrent network. Read more