What is a Recurrent Cell?
A recurrent cell is a neuron with memory: it reads one token at a time and carries a hidden state forward. Step through a sentence and watch the memory change.
Input Sequence
The Update Rule
hₜ = tanh(W·xₜ + U·hₜ₋₁ + b)
xₜ — embedding of the current token
hₜ₋₁ — memory carried from the previous step
W, U, b — the same weights, reused at every step
The Cell
t = 0Hidden state hₜ — the network's memory (4 dims)