Back to Arcs

In 2017, Google researchers replaced sequential RNNs with a parallelizable self-attention architecture. Over the next seven years, this design scaled from translation tasks to trillion-parameter models, driving the valuation of hardware providers like NVIDIA past $3 trillion. This arc documents the technical milestones and empirical scaling metrics that transformed the Transformer from an academic paper into the primary infrastructure of modern compute.

01. Origins & RNN Bottleneck

In 2014, Bahdanau et al. introduced the attention mechanism to alleviate the information bottleneck in sequence-to-sequence Recurrent Neural Networks (RNNs). However, sequential dependencies in RNNs (such as LSTM) remained a hard constraint, preventing parallel processing across GPU clusters. In June 2017, Vaswani et al. published 'Attention Is All You Need,' proposing the Transformer. By removing recurrence entirely, it allowed parallel training. On the WMT 2014 English-to-German translation task, the Transformer achieved a state-of-the-art 28.4 BLEU score. Crucially, it required only 3.15e18 FLOPS of training compute—about a fraction of the cost of previous architectures, proving that architectural simplification could significantly improve computational efficiency.
Key Insight

Removing recurrence unlocked GPU parallel training scalability. This single design decision — trading sequential computation for parallelism — is what made the entire scaling trajectory possible. Without it, none of the billion-parameter models that followed would have been feasible.

02. Encoder-Decoder Divergence & Scaling Laws

In 2018, Google released BERT-Large, a 340-million-parameter encoder model that set SOTA records on 11 NLP tasks, including GLUE and SQuAD benchmarks. In parallel, OpenAI focused on a decoder-only architecture. In 2020, OpenAI scaled this trajectory with GPT-3, featuring 175 billion parameters trained on 300 billion tokens with an estimated 3.14e23 FLOPS of compute. GPT-3 demonstrated few-shot learning capabilities without weight updates, executing code generation and logical reasoning tasks. This empirical success validated the scaling laws proposed by Kaplan et al., showing that cross-entropy loss decreases as a power-law function of parameter count, dataset size, and training compute.
Key Insight

Performance scales as a power-law function of compute and data. The scaling laws transformed AI research from a craft into an engineering discipline. From 2020 onward, the question shifted from ‘what architecture works’ to ‘how much compute can you afford.’

03. The ChatGPT Moment & MoE Scaling

In November 2022, OpenAI launched ChatGPT, which reached 100 million monthly active users in 60 days, making it the fastest-growing consumer application in history. While GPT-3.5 served as the baseline, the addition of Reinforcement Learning from Human Feedback (RLHF) aligned model outputs to user intent. In March 2023, OpenAI released GPT-4. Reports indicated a Mixture-of-Experts (MoE) architecture totaling approximately 1.8 trillion parameters across 16 experts, operating with a 128k token context window. GPT-4 scored in the 90th percentile of the Uniform Bar Exam and 99th percentile of the Biology Olympiad, establishing that dense and sparse parameter scaling yields high-level cognitive task accuracy.
Key Insight

Sparse MoE scaling enabled trillion-parameter training feasibility. But the real breakthrough wasn’t the architecture — it was RLHF. The alignment technique that turned a raw language model into something millions of ordinary people found genuinely useful.

04. Native Multimodality & Inference-Time Compute

By 2024, scaling strategy diversified. GPT-4o combined text, vision, and audio into a single neural network, reducing audio latency to an average of 232 milliseconds—matching human conversation speeds. In September 2024, OpenAI introduced o1, shifting focus from pre-training compute to inference-time compute. By using reinforcement learning to generate chains of thought before outputting answers, o1 improved performance on the American Invitational Mathematics Examination (AIME) from GPT-4o's 13.4% to 83.3%. By 2025, GPT-5 integrated these paradigms with unified reasoning, backed by mega-datacenters requiring tens of thousands of H100 GPUs and tens of billions in capital expenditure. In parallel, NVIDIA's market capitalization surpassed $3 trillion, reflecting the massive financial scale required to sustain this infrastructure.
Key Insight

Inference-time search bypassed pre-training sample complexity limits. This shift from pre-training compute to inference-time compute represents a second paradigm shift. It changes the bottleneck from ‘how much data you have’ to ‘how much compute you are willing to spend at inference time.’

Conclusion

The Transformer scaling story is not just a technical achievement. It is the defining economic narrative of the 2020s. In less than a decade, a single architectural insight reshaped the entire computing stack: from a 2017 paper to NVIDIA’s $3-trillion valuation, from machine translation to the infrastructure that underpins a new generation of software. The evidence is clear: raw scale combined with basic structural priors produces capabilities that surprise even their creators. But this is not a story without costs — and the costs are mounting. The computational demands of frontier training now exceed the energy output of small countries. The internet’s stock of high-quality text has been largely exhausted. And the alignment techniques that made ChatGPT safe enough for public use remain fragile shortcuts, not robust solutions. The industry has scaled its way into a corner: the next orders of magnitude in compute will require breakthroughs in energy, data efficiency, or both. The deeper question — the one this timeline cannot answer — is whether the Transformer’s trajectory will continue or plateau. The architecture has proven more durable than anyone expected in 2017. But durability is not destiny. The transition from pre-training scaling to inference-time compute suggests the paradigm is already shifting. What comes next may not look like the Transformer at all.