sequence-modeling-complete-evolutionary-arc

IN derived (depth 2)

Created 2026-06-21T10:01:28+00:00 · Reviewed 2026-06-21T15:37:01+00:00

The arc of sequence modeling shows three generations — RNNs, LSTMs, Transformers — connected by successive solutions to predecessor limitations (vanishing gradients, then sequential bottleneck), with the LSTM-to-Transformer transition trading the ability to learn dependencies across unlimited timesteps for massively parallel training. Attention served as a primary bridging innovation, first augmenting RNN encoder-decoders to solve the fixed-size bottleneck, then enabling the replacement of recurrence entirely.

Justifications

SL — Three depth-1 conclusions each capture one facet of the same evolutionary narrative; combining them reveals attention as the pivotal mechanism and parallelism as the driving selective pressure

Antecedents (all must be IN):

  • IN sequence-modeling-three-generations — Sequence modeling evolved through three generations — RNNs, LSTMs, Transformers — each solving a specific limitation of its predecessor (vanishing gradients for LSTMs, sequential bottleneck for Transformers).
  • IN attention-bridge-rnn-to-transformer — The attention mechanism served as the transitional innovation from RNN-based to Transformer-based architectures, first augmenting encoder-decoder RNNs to solve the fixed-size bottleneck, then replacing recurrence entirely.
  • IN lstm-transformer-parallelism-tradeoff — The LSTM-to-Transformer transition traded the ability to learn dependencies across unlimited timesteps for massively parallel training, a sequential-depth-for-parallel-breadth exchange.

Dependents

These beliefs depend on this one: