← GALLERY X EXHIBITS
Training Compute
GALLERY X

Training Compute

Training Compute—the computational substrate enabling artificial intelligence—emerges as the revolutionary tool of the digital age, paralleling steam's role in industrial transformation. From Turing's theoretical foundations (1936) through transformer architectures (2017), it represents humanity's attempt to mechanize thought itself, completing the spiral from Jefferson's technological optimism to algorithmic intelligence.
Alan Mathison Turing (1912–1954), British mathematician and logician whose 1936 paper 'On Computable Numbers' established the theoretical foundation for all digital computation. Turing's 1950 essay 'Computing Machinery and Intelligence' posed the question 'Can machines think?' and proposed the Imitation Game—later called the Turing Test—as a practical measure of machine intelligence. Though he died by cyanide poisoning at 41, his conceptual architecture underwrites every neural network trained today. Turing was to computation what Watt was to steam: not the inventor of the phenomenon, but its theorist and systematizer.

Specifications

Cooling
Liquid or air-cooled data centers
Precision
16-bit to 32-bit floating-point arithmetic
Typical Scale
10^9 to 10^12+ parameters per model
Core Algorithm
Stochastic gradient descent with variants (Adam, RMSprop)
Parallelization
Distributed across multiple GPUs/TPUs via data or model parallelism
Primary Function
Iterative optimization of neural network weights via backpropagation
Data Requirements
Millions to billions of text, image, or multimodal examples
Training Duration
Days to months, depending on dataset and model size
Energy Consumption
Megawatts per large-scale training run
Computational Substrate
Graphics Processing Units (GPUs), Tensor Processing Units (TPUs), or custom silicon

Engineering

Training Compute is not a single machine but an orchestrated system: a vast dataset (curated, tokenized, and batched), a neural network architecture (layers of weighted matrices), and an optimization loop running on specialized hardware. The process begins with random initialization of billions of parameters. Forward passes compute predictions; loss functions measure error; backpropagation (Rumelhart, Hinton, Williams, 1986) calculates gradients; optimizers adjust weights incrementally. Modern training leverages mixed-precision arithmetic to accelerate computation while preserving numerical stability. Distributed training splits the workload across clusters of GPUs or TPUs, synchronized via frameworks like PyTorch or TensorFlow. The transformer architecture (Vaswani et al., 2017) introduced multi-head attention, enabling parallel processing of sequential data and dramatic improvements in language modeling. Checkpointing saves model state at intervals; early stopping halts training when validation loss plateaus. The entire pipeline—data ingestion, preprocessing, distributed training, evaluation, and logging—is orchestrated by software stacks developed at scale by organizations like OpenAI, DeepMind, Meta, and Google.

Parts & Labels

Dataset
Curated corpus of text, images, or other modalities; typically terabytes in size
GPU/TPU
Specialized hardware accelerating matrix multiplication and activation functions
Optimizer
Algorithm updating weights based on gradients (SGD, Adam, etc.)
Tokenizer
Algorithm converting raw data into discrete tokens for model consumption
Loss Function
Metric quantifying prediction error (cross-entropy, MSE, etc.)
Neural Network
Layered architecture of neurons and weights; the learnable model
Memory Hierarchy
VRAM (on-device), system RAM, and disk storage for parameters and activations
Checkpointing System
Periodic snapshots of model weights for fault tolerance and resumption
Monitoring & Logging
Real-time tracking of loss, accuracy, and hardware utilization
Synchronization Layer
Distributed communication protocol (NCCL, Gloo) coordinating multi-device training
Backpropagation Engine
Automatic differentiation system computing gradients

Historical Overview

The intellectual lineage of Training Compute traces to Turing's 1936 formalization of computability and his 1950 proposal of the Imitation Game. McCulloch and Pitts (1943) modeled neurons as logical gates; Hebb (1949) proposed learning rules based on synaptic plasticity. The perceptron (Rosenblatt, 1958) demonstrated that simple networks could learn linear separations. The backpropagation algorithm, rediscovered and popularized by Rumelhart, Hinton, and Williams in 1986, made training deep networks feasible. Early successes—LeNet (LeCun et al., 1998) for handwriting recognition, support vector machines—remained limited by computational power and data scarcity. The deep learning renaissance began circa 2012 when Krizhevsky, Sutskever, and Hinton's AlexNet won the ImageNet competition using GPUs and large labeled datasets. Subsequent breakthroughs—VGGNet (2014), ResNet (2015), and the transformer (Vaswani et al., 2017)—were enabled by exponential increases in compute, data availability, and algorithmic refinement. By 2018, BERT and GPT demonstrated that unsupervised pretraining on massive text corpora could yield models with broad linguistic competence. GPT-3 (2020, 175 billion parameters) showed few-shot learning; subsequent models scaled further. This arc—from Turing's theoretical machine to billion-parameter networks trained on petabytes—parallels the Age of Revolutions' transformation of mechanical power into industrial dominion, now extended into the domain of cognition itself.

Why It Existed

Training Compute emerged as a response to three converging imperatives: (1) the theoretical recognition that intelligence could be mechanized (Turing, 1950); (2) the practical availability of data at scale (the internet, digitized text, labeled image corpora); and (3) the hardware capability to perform billions of floating-point operations per second (GPUs, designed originally for graphics, repurposed for matrix math). The motivation was instrumental: to build systems that could recognize images, translate languages, play games, and generate text—tasks previously thought to require human cognition. Economically, the potential value of such systems (in search, recommendation, autonomous systems, scientific discovery) justified enormous capital investment. Philosophically, Training Compute represented the latest chapter in humanity's long project to externalize and mechanize mental labor—a project that began with writing, continued through printing and calculation machines, and culminated in programmable digital computers. In the context of the Age of Revolutions, Training Compute is the heir to steam power: both are general-purpose amplifiers of human capability, both required massive infrastructure investment, both promised (and delivered) transformative social change, and both raised urgent questions about labor, equity, and the distribution of power.

Daily Use

In contemporary practice, Training Compute is deployed in three main contexts: (1) Research and development, where teams at academic institutions and technology companies experiment with new architectures and datasets to advance the state of the art; (2) Production training, where organizations like OpenAI, Google, and Meta train large models on proprietary or public data to create products; and (3) Fine-tuning and adaptation, where smaller organizations adapt pre-trained models to domain-specific tasks (medical imaging, legal document analysis, customer support chatbots). A typical workflow begins with data collection and cleaning—removing duplicates, filtering for quality, and balancing class distributions. Data is then tokenized and split into training, validation, and test sets. The model architecture is selected (transformer, CNN, RNN, or hybrid) and initialized. Training begins: the optimizer iterates through batches of data, computing gradients and updating weights. Engineers monitor loss curves, validation metrics, and hardware utilization in real time. If loss plateaus or diverges, hyperparameters (learning rate, batch size, regularization) are adjusted. Training may run continuously for weeks. Upon convergence, the model is evaluated on held-out test data. Successful models are deployed to inference servers, where they process queries at scale. Throughout, practitioners consult research papers, share code via GitHub, and collaborate via cloud platforms (AWS, Google Cloud, Azure). The work is highly collaborative, involving data engineers, machine learning engineers, research scientists, and infrastructure specialists.

Crew / Personnel

Training Compute requires a multidisciplinary team. Machine Learning Engineers design architectures, implement training loops, and debug numerical issues. Data Engineers curate, clean, and pipeline datasets at scale. Research Scientists propose novel algorithms and conduct experiments. Infrastructure Engineers manage GPU clusters, optimize distributed training, and ensure fault tolerance. DevOps specialists maintain CI/CD pipelines and monitoring systems. Domain Experts (linguists, domain scientists) guide data collection and evaluation. Managers coordinate timelines and allocate compute budgets. At large organizations like OpenAI, DeepMind, and Meta, these roles are highly specialized; at smaller labs, individuals wear multiple hats. The field has also developed a culture of open collaboration: researchers publish papers, release code, and share pre-trained models (via Hugging Face, GitHub). This mirrors the scientific ethos of the Enlightenment—the belief that knowledge should circulate freely—while operating within the constraints of proprietary interests and national security concerns.

Construction

Training Compute is constructed through layered abstraction. At the lowest level, GPUs and TPUs implement highly optimized matrix multiplication and activation functions in hardware. Above that, frameworks like CUDA (NVIDIA) and XLA (Google) provide low-level programming interfaces. Higher-level frameworks—PyTorch, TensorFlow, JAX—offer automatic differentiation, neural network layers, and optimization algorithms. Researchers write training scripts in Python, specifying the model architecture, loss function, and optimizer. These scripts are executed on clusters managed by orchestration software (Kubernetes, Slurm) that schedules jobs, allocates resources, and handles failures. Data pipelines (using tools like Apache Spark or custom ETL scripts) ingest and preprocess raw data. Monitoring systems (Prometheus, TensorBoard) track metrics in real time. Version control (Git) manages code; experiment tracking systems (Weights & Biases, MLflow) log hyperparameters, metrics, and artifacts. The entire stack—hardware, system software, frameworks, and application code—must be carefully integrated and tuned. A single training run may involve thousands of lines of code, terabytes of data, and weeks of computation across hundreds of GPUs. Failures are common: GPUs overheat, network links drop, numerical instabilities emerge. Robustness requires redundancy, checkpointing, and careful monitoring.

Variations

Training Compute manifests in several distinct variants, each optimized for different objectives and constraints: (1) Supervised learning, where models learn from labeled examples (e.g., ImageNet classification, machine translation); (2) Unsupervised learning, where models discover structure in unlabeled data (e.g., language model pretraining on raw text); (3) Reinforcement learning, where models learn from rewards and penalties (e.g., game playing, robotics); (4) Self-supervised learning, a hybrid approach where labels are derived from the data itself (e.g., predicting masked words in BERT); (5) Few-shot and zero-shot learning, where models generalize from minimal examples; (6) Federated learning, where training is distributed across decentralized devices to preserve privacy; (7) Continual learning, where models adapt to new data without forgetting prior knowledge. Hardware variations include GPU-based training (NVIDIA A100, H100), TPU-based training (Google), custom silicon (Tesla Dojo, Cerebras), and hybrid approaches. Algorithmic variations include different optimizers (SGD, Adam, AdamW), regularization techniques (dropout, batch normalization, weight decay), and architectural innovations (attention mechanisms, residual connections, normalization schemes). At the extreme end, some organizations experiment with neuromorphic hardware and analog computing to reduce energy consumption, though these remain niche.

Timeline

DateEvent
1936Turing's 'On Computable Numbers' establishes theoretical foundation for computation Introduces the Turing machine; proves limits of computability
1950Turing proposes the Imitation Game as test of machine intelligence Later called the Turing Test; published in Mind journal
1943McCulloch & Pitts model neurons as logical gates Foundation of artificial neural networks
1958Rosenblatt invents the perceptron; demonstrates learning in artificial networks First practical learning algorithm for neural networks
1986Rumelhart, Hinton, Williams publish backpropagation algorithm Enables training of multi-layer neural networks
1998LeCun et al. deploy LeNet for handwritten digit recognition Early success in deep learning; used in postal systems
2012Krizhevsky, Sutskever, Hinton win ImageNet competition with AlexNet using GPUs Marks the beginning of the deep learning era
2015He et al. introduce ResNet; enables training of very deep networks Residual connections solve vanishing gradient problem
2017Vaswani et al. introduce the Transformer architecture Multi-head attention replaces recurrence; enables parallel processing
2018Devlin et al. release BERT; demonstrates power of unsupervised pretraining Bidirectional encoder representations from transformers
2020OpenAI releases GPT-3 with 175 billion parameters Demonstrates few-shot learning and broad linguistic competence
2023GPT-4, Gemini, Claude, and other frontier models deployed at scale Training Compute reaches petabyte-scale datasets and trillion-parameter models

Famous Examples

GPT-3 (OpenAI, 2020): 175 billion parameters, trained on 300 billion tokens of diverse internet text. Demonstrated few-shot learning and broad linguistic competence; sparked the large language model boom. BERT (Google, 2018): 340 million parameters, bidirectional transformer pretrained on Wikipedia and BookCorpus. Became the standard baseline for NLP tasks. AlexNet (Krizhevsky, Sutskever, Hinton, 2012): 60 million parameters, trained on ImageNet using NVIDIA GPUs. Achieved 85% top-5 accuracy, dramatically outperforming prior methods and catalyzing the deep learning era. ResNet-152 (He et al., 2015): 152 layers, trained on ImageNet. Won the competition with 96.4% top-5 accuracy; residual connections became standard. Transformer (Vaswani et al., 2017): 65 million parameters in the base model, trained on WMT 2014 English-German translation. Achieved state-of-the-art BLEU scores and became the foundation for all subsequent large language models. AlphaGo (DeepMind, 2016): Trained using supervised learning on human games, then refined via reinforcement learning and Monte Carlo tree search. Defeated Lee Sedol, the world Go champion, in a landmark match. GPT-4 (OpenAI, 2023): Estimated 1+ trillion parameters (exact size undisclosed), trained on multimodal data. Exhibits broad reasoning, coding, and creative capabilities. Gemini (Google, 2023): Multimodal model trained on text, images, audio, and video. Deployed across Google's product suite.

Archaeological Finds

Training Compute leaves no physical artifacts—it exists as ephemeral patterns of electrical charge in silicon and as records in digital storage. However, the archaeological record of the field includes: (1) Published papers and preprints (arXiv.org hosts millions, dating to 1991); (2) Open-source code repositories (GitHub, GitLab) containing implementations of models and training scripts; (3) Benchmark datasets (ImageNet, MNIST, GLUE, SuperGLUE, etc.) used to evaluate models; (4) Model weights and checkpoints released publicly (Hugging Face Model Hub contains hundreds of thousands); (5) Hardware specifications and performance benchmarks (NVIDIA GPU evolution, TPU documentation); (6) Training logs and experiment tracking data (Weights & Biases, TensorBoard snapshots); (7) Interviews, oral histories, and retrospectives by pioneers (Hinton, LeCun, Bengio); (8) Conference proceedings (NeurIPS, ICML, ICLR, CVPR) documenting the progression of ideas. The most valuable archaeological artifact is the open-source ecosystem: PyTorch, TensorFlow, and JAX represent collective engineering effort spanning thousands of contributors and millions of lines of code. These repositories are version-controlled and publicly archived, providing a detailed record of how the field evolved.

Comparison Panel

Internet (1969)
Enabled global information exchange. Training Compute leverages the internet to aggregate data and distribute computation globally.
Telegraph (1844)
Enabled long-distance communication at speed of electricity. Training Compute enables long-distance cognition—models trained in one location can be deployed globally.
Telephone (1876)
Enabled real-time voice communication. Training Compute enables real-time language understanding and generation.
Transistor (1947)
Enabled miniaturization and scaling of computation. GPUs and TPUs are the transistors of the Training Compute era—enabling exponential scaling.
Steam Engine (1769)
Mechanical power amplifier; required fuel, generated heat, enabled factories. Training Compute is an informational power amplifier; requires electricity, generates heat, enables artificial intelligence.
Assembly Line (1913)
Mechanized production; required standardization and coordination. Training Compute pipelines mechanize learning; require standardization (frameworks, benchmarks) and coordination (distributed training).
Printing Press (1440)
Democratized information distribution; required capital investment, created new professions, transformed society. Training Compute democratizes information generation; requires capital investment, creates new professions, transforming society.
Electricity Grid (1882)
Distributed power to homes and factories. Cloud computing distributes Training Compute to researchers and practitioners globally.

Interesting Facts

  • Backpropagation was independently discovered at least three times (1960s, 1986, 1989) before gaining widespread adoption.
  • GPT-3's training consumed an estimated 1,287 MWh of electricity, equivalent to the annual consumption of ~130 U.S. homes.
  • The ImageNet dataset, which catalyzed the deep learning revolution, was manually labeled by thousands of crowdworkers earning ~$1.40 per hour.
  • Transformer models scale predictably with compute: doubling compute roughly doubles model performance, a relationship known as the 'scaling law.'
  • NVIDIA's stock price increased 10x between 2016 and 2021, driven almost entirely by demand for GPUs for AI training.
  • The largest language models (GPT-4, Gemini) are estimated to cost $100+ million to train, making them accessible only to well-funded organizations.
  • Turing's 1950 paper 'Computing Machinery and Intelligence' has been cited over 20,000 times, making it one of the most influential papers in computer science.
  • The first neural network trained on a computer (SNARC, 1951) had 40 neurons; modern models have trillions of parameters.
  • Backpropagation was initially dismissed as impractical because it seemed to require storing intermediate activations for all layers; modern techniques (gradient checkpointing) solve this.
  • The 'bitter lesson' (Rich Sutton, 2019) observes that AI progress has consistently come from scaling compute and data, not from hand-crafted domain knowledge.
  • Training a single large language model generates carbon emissions equivalent to driving a car 500,000 miles—raising environmental concerns.
  • Federated learning enables training on decentralized data without centralizing it, preserving privacy but at the cost of efficiency.
  • The Lottery Ticket Hypothesis (Frankle & Carbin, 2019) suggests that large networks contain sparse subnetworks that can match full-network performance.
  • Attention mechanisms, central to transformers, were inspired by human visual attention—a rare case of neuroscience directly informing AI architecture.
  • The largest open-source language model (Llama 2, Meta, 2023) has 70 billion parameters and was trained on 2 trillion tokens.
  • Training curves often exhibit 'double descent'—performance initially improves, then worsens (overfitting), then improves again with more data.
  • The Chinchilla scaling laws (DeepMind, 2022) suggest that optimal models have roughly equal compute allocated to data and parameters.
  • Adversarial examples—inputs crafted to fool neural networks—reveal that training Compute can produce models that are brittle and non-robust.
  • The field of mechanistic interpretability seeks to reverse-engineer trained models to understand how they compute; this remains largely unsolved.
  • Training Compute has enabled the emergence of 'foundation models'—large pretrained models that serve as starting points for many downstream applications.

Quotations

  • Text
    Can machines think?
    Attribution
    Alan Turing, 'Computing Machinery and Intelligence' (1950)
  • Text
    The question 'Can machines think?' is itself too meaningless to deserve discussion.
    Attribution
    Alan Turing, 'Computing Machinery and Intelligence' (1950)
  • Text
    If a machine can think, it might think more intelligently than we do, and then where should we be?
    Attribution
    Alan Turing, attributed (1951)
  • Text
    We propose to consider the question, 'Can machines think?' This should begin with definitions of the meaning of the terms 'machine' and 'think.'
    Attribution
    Alan Turing, 'Computing Machinery and Intelligence' (1950)
  • Text
    The brain is not an organ of thought, but of imagination.
    Attribution
    Geoffrey Hinton, attributed (on the nature of neural computation)
  • Text
    Deep learning is a rebranding of neural networks. It's not really a new field; it's just neural networks with more layers and more data.
    Attribution
    Yann LeCun, attributed (circa 2012)
  • Text
    The bitter lesson is that the two methods that have repeatedly won in the long run are 1) search over a large space of possibilities and 2) learning a sufficiently rich representation.
    Attribution
    Richard Sutton, 'The Bitter Lesson' (2019)
  • Text
    In the future, there will be two kinds of data scientists: those who can build machine learning models, and those who are unemployed.
    Attribution
    Attributed to various sources, circa 2015 (origin uncertain)
  • Text
    Attention is all you need.
    Attribution
    Vaswani et al., title of 'Attention Is All You Need' (2017)
  • Text
    The scaling laws are remarkably predictable. We can predict performance from compute, data, and model size with high accuracy.
    Attribution
    Jared Kaplan et al., 'Scaling Laws for Neural Language Models' (2020)

Sources

  • Note
    Foundational paper establishing the theoretical basis for computation and the Turing machine.
    Type
    primary
    Year
    1936
    Title
    On Computable Numbers, with an Application to the Entscheidungsproblem
    Author
    Alan Turing
  • Note
    Proposes the Imitation Game (Turing Test) and asks whether machines can think; published in Mind journal.
    Type
    primary
    Year
    1950
    Title
    Computing Machinery and Intelligence
    Author
    Alan Turing
  • Note
    Seminal paper on backpropagation; enables training of multi-layer neural networks.
    Type
    primary
    Year
    1986
    Title
    Learning Representations by Back-Propagating Errors
    Author
    Rumelhart, Hinton, Williams
  • Note
    AlexNet paper; catalyzes the deep learning revolution using GPU training.
    Type
    primary
    Year
    2012
    Title
    ImageNet Classification with Deep Convolutional Neural Networks
    Author
    Krizhevsky, Sutskever, Hinton
  • Note
    Introduces the Transformer architecture; foundation for modern large language models.
    Type
    primary
    Year
    2017
    Title
    Attention Is All You Need
    Author
    Vaswani et al.
  • Note
    Demonstrates the power of unsupervised pretraining on massive text corpora.
    Type
    primary
    Year
    2018
    Title
    BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding
    Author
    Devlin et al.
  • Note
    GPT-3 paper; demonstrates few-shot learning and broad linguistic competence at scale.
    Type
    primary
    Year
    2020
    Title
    Language Models are Few-Shot Learners
    Author
    Brown et al.
  • Note
    Comprehensive textbook covering neural networks, training algorithms, and applications.
    Type
    secondary
    Year
    2016
    Title
    Deep Learning
    Author
    Goodfellow, Bengio, Courville
  • Note
    Nature review article surveying the history and state of deep learning.
    Type
    secondary
    Year
    2015
    Title
    Deep Learning
    Author
    LeCun, Bengio, Hinton
  • Note
    Practical guide to building and training neural networks using Keras and TensorFlow.
    Type
    secondary
    Year
    2017
    Title
    Deep Learning with Python
    Author
    Chollet, François
  • Note
    Reflective essay on the history of AI, arguing that scaling compute and data has been the key driver of progress.
    Type
    secondary
    Year
    2019
    Title
    The Bitter Lesson
    Author
    Sutton, Richard S.
  • Note
    Empirical study of how model performance scales with compute, data, and parameters.
    Type
    modern
    Year
    2020
    Title
    Scaling Laws for Neural Language Models
    Author
    Kaplan et al.
  • Note
    Chinchilla scaling laws; suggests optimal allocation of compute to data and parameters.
    Type
    modern
    Year
    2022
    Title
    Training Compute-Optimal Large Language Models
    Author
    Hoffmann et al.
  • Note
    Meta's open-source large language model; demonstrates competitive performance with proprietary models.
    Type
    modern
    Year
    2023
    Title
    Llama 2: Open Foundation and Fine-Tuned Chat Models
    Author
    Touvron et al.
  • Note
    Open preprint repository hosting millions of papers in physics, computer science, and related fields; primary venue for AI research dissemination.
    Type
    archive
    Year
    1991
    Title
    arXiv.org
  • Note
    Version control platform hosting open-source implementations of neural networks, frameworks (PyTorch, TensorFlow), and datasets.
    Type
    archive
    Year
    2008
    Title
    GitHub
  • Note
    Repository of hundreds of thousands of pretrained models, datasets, and training scripts; democratizes access to state-of-the-art models.
    Type
    archive
    Year
    2019
    Title
    Hugging Face Model Hub

Source of Truth

🗺 POCKET MAP
🗺 Museum Map
Galleries
Plan your visit
Your route
…tracing your steps…
QR code linking back to this exhibit
SCAN TO RETURN TO THIS EXHIBIT