residual-connections-and-lstm-gating-are-convergent-solutions

IN derived (depth 2)

Created 2026-06-21T11:27:22+00:00 · Reviewed 2026-06-21T15:37:01+00:00

Residual connections (ResNet) and LSTM gating are convergent solutions to the same underlying problem — both enable gradient flow through deep computation graphs, with LSTM's forget gate solving vanishing gradients in recurrent (temporal) depth and skip connections solving the degradation problem in feedforward (spatial) depth — suggesting that identity-preserving shortcuts are a universal architectural principle for deep networks regardless of topology.

Justifications

SL — Two independently invented architectures (LSTM 1997, ResNet 2015) solved analogous gradient flow problems in different topologies using the same principle: additive identity shortcuts

Antecedents (all must be IN):

  • IN residual-connections-enable-arbitrary-depth — Residual connections (F(x) + x) are the key architectural innovation enabling arbitrarily deep networks — ResNet solved the degradation problem for CNNs, and the same mechanism was adopted by transformers to enable deep stacking without vanishing gradients.
  • IN lstm-designed-to-solve-vanishing-gradient — LSTM was designed specifically to solve the vanishing gradient problem using forget gates as the key mechanism.
  • IN lstm-solves-vanishing-gradient — LSTM (Long Short-Term Memory), invented by Hochreiter and Schmidhuber (1995/1997), uses gating mechanisms to preserve long-term dependencies and was specifically designed to address the vanishing gradient problem in vanilla RNNs.

Dependents

These beliefs depend on this one: