rnn-standard-function-signature
IN premise — entries/2026/06/21/wiki-Recurrent_neural_network-chunk-2.md
Created 2026-06-21T09:55:53+00:00
A standard RNN is defined as f_θ: (x_t, h_t) → (y_t, h_{t+1}), mapping an input and hidden state to an output and updated hidden state.
Dependents
These beliefs depend on this one:
- IN rnn-design-space-two-dimensional — RNN design involves two orthogonal dimensions: cell architecture (vanilla RNN, LSTM, GRU) determines how hidden state is updated, while configuration (standard, stacked, bidirectional, encoder-decoder) determines data flow topology — the canonical function signature f_theta: (x_t, h_t) -> (y_t, h_{t+1}) is invariant across both, and the time-unfolded diagram represents temporal steps not spatial depth.