GRU - Gated Recurrent Unit

A simplified version of LSTM that combines the forget and input gates into a single update gate. GRUs are generally faster and require less computational resources than LSTMs.
Back to top