From Turing's 1950 imitation game to transformer neural networks (2017–present), artificial intelligence evolved as a revolutionary tool for automating cognition itself. This exhibit traces AI's emergence within the Age of Revolutions' spirit of mechanization, rational inquiry, and the democratization of intellectual labor—positioning machine learning as the latest turn in humanity's spiral of technological self-extension.
Alan Mathison Turing (1912–1954), British mathematician and logician, stands as the intellectual progenitor of artificial intelligence. His 1936 paper 'On Computable Numbers' formalized the concept of the universal computing machine; his 1950 essay 'Computing Machinery and Intelligence' posed the central question—'Can machines think?'—and proposed the Imitation Game (later called the Turing Test) as an operational measure of machine intelligence. Turing's work bridged pure mathematics and practical engineering, much as Jefferson's designs bridged Enlightenment philosophy and mechanical craft. Though he died by suicide in 1954, his theoretical foundations enabled every subsequent advance in AI, from early symbolic systems through deep learning to transformer architectures. Turing embodied the revolutionary conviction that intelligence itself could be mechanized, democratized, and distributed—a conviction that defines our current age.
Pattern recognition, language modeling, knowledge synthesis
Inference Latency
Sub-second to seconds per query
Energy Requirement
Megawatt-scale data centers
Foundational Paper
Vaswani et al., 'Attention Is All You Need' (2017)
Training Data Scale
Billions to hundreds of billions of tokens
Computational Substrate
GPU/TPU clusters, distributed training
Engineering
The transformer architecture, introduced by Vaswani et al. at Google Brain in June 2017, replaced recurrent neural networks with a parallelizable attention mechanism—a mathematical operation that learns which parts of an input sequence are most relevant to each output token. This self-attention layer computes queries, keys, and values from input embeddings, allowing the model to weigh relationships across arbitrary distances in text without sequential bottlenecks. Stacked transformer blocks (encoder-decoder or decoder-only) process information in parallel, enabling training on massive corpora at unprecedented scale. The architecture's elegance lies in its simplicity: no convolutions, no recurrence, only learned linear projections and softmax normalization. This design proved scalable to 175 billion parameters (GPT-3, 2020) and beyond, with empirical evidence suggesting that scale alone—given sufficient data and compute—yields emergent capabilities in reasoning, code generation, and few-shot learning. Modern variants employ techniques such as mixture-of-experts routing, retrieval-augmented generation, and constitutional AI to extend capability and control.
Parts & Labels
Dropout
Regularization technique; randomly zeros activations during training to prevent overfitting
Attention Mask
Prevents model from attending to future tokens during training (causal masking); enforces autoregressive generation
Embedding Layer
Converts discrete tokens (words, subwords) into continuous vectors; learned during training
Layer Normalization
Stabilizes training by normalizing activations across feature dimension before each sublayer
Positional Encoding
Injects sequence order information; typically sinusoidal or learned embeddings
Residual Connection
Skip connection around attention and feed-forward; enables deep stacking without vanishing gradients
Self-Attention Head
Computes scaled dot-product attention over query-key-value projections; multiple heads attend to different representation subspaces
Parallel attention heads concatenated and projected; allows model to attend to multiple semantic and syntactic features
Softmax Output Layer
Probability distribution over vocabulary; selects next token during generation
Historical Overview
Artificial intelligence emerged as a formal discipline at the 1956 Dartmouth Summer Research Project on Artificial Intelligence, organized by John McCarthy, Marvin Minsky, Claude Shannon, and Nathaniel Rochester. Early symbolic AI systems (ELIZA, 1966; expert systems, 1970s–1980s) sought to encode human knowledge as explicit rules. The field experienced two 'AI winters' (1974–1980, 1987–1993) when performance plateaued and funding dried up. The resurgence began in the 1990s with machine learning approaches—decision trees, support vector machines, and early neural networks. The 2012 ImageNet moment, when Geoffrey Hinton's deep convolutional neural network (AlexNet) dramatically outperformed traditional computer vision, catalyzed the deep learning revolution. Recurrent neural networks (LSTMs, 2015) enabled sequence modeling; the transformer (2017) replaced them with parallelizable attention. GPT-1 (2018), GPT-2 (2019), and GPT-3 (2020) demonstrated that scaling language models on diverse internet text produced general-purpose reasoning and generation. By 2023–2024, large language models (LLMs) achieved widespread adoption in enterprise and consumer applications, positioning AI as a transformative general-purpose technology—the latest turn in the spiral of mechanization that began with the steam engine and the cotton gin.
Why It Existed
Artificial intelligence emerged from three converging pressures: (1) theoretical—the mid-20th-century formalization of computation (Turing, Church, Gödel) raised the question whether mind itself was computable; (2) practical—the explosion of data (digitized text, images, sensor streams) created an urgent need for automated analysis beyond human capacity; (3) ideological—the Age of Revolutions' legacy of rational mechanization and the democratization of labor suggested that intellectual work, like manual work, could be automated and distributed. The transformer and large language models specifically arose to solve the scaling bottleneck in sequence modeling: recurrent architectures processed tokens sequentially, limiting parallelization and training speed. The attention mechanism, by contrast, allowed the model to learn long-range dependencies in a single forward pass, enabling training on billions of tokens. Economically, the marginal cost of inference approached zero once a model was trained, making AI a candidate for automating cognitive tasks at scale—translation, summarization, code generation, customer service—much as the steam engine automated physical labor. Philosophically, large language models posed anew Turing's question: if a machine can pass the Turing Test by generating human-like text indistinguishable from human authorship, what does that tell us about the nature of intelligence itself?
Daily Use
By 2024, transformer-based AI systems had penetrated daily life across multiple domains. Consumers used large language models (ChatGPT, Claude, Gemini) for writing assistance, research, coding help, and creative brainstorming. Professionals deployed AI for document summarization, email drafting, code completion (GitHub Copilot), and customer support chatbots. Search engines integrated generative AI to provide direct answers rather than link lists. Healthcare systems used transformer models for medical image analysis, drug discovery, and clinical note generation. Enterprises employed AI for demand forecasting, fraud detection, and personalized recommendations. Educational platforms offered AI tutoring and automated grading. The workflow became iterative: a user posed a query in natural language; the model generated a response in milliseconds; the user refined the query or accepted the output. Unlike earlier automation (which replaced workers), AI augmented human cognition—a tool that extended rather than eliminated intellectual labor. The energy cost was substantial: a single large language model query consumed roughly 0.3 watt-hours, and global AI inference was projected to consume 1–2% of global electricity by 2030. This mirrored the Industrial Revolution's trade-off: mechanization increased productivity but demanded new infrastructure and energy sources.
Crew / Personnel
Sam Altman
Entrepreneur; CEO of OpenAI; commercialized large language models for mass adoption
Yann LeCun
Computer scientist; developed convolutional neural networks; Facebook AI Research
Alan Turing
Mathematician; formalized computability and proposed the Turing Test (1950)
Cognitive scientist; co-founder of MIT AI Lab; early neural network theorist
Yoshua Bengio
Computer scientist; advanced deep learning theory; Turing Award 2018
Ashish Vaswani
Google Brain researcher; lead author of 'Attention Is All You Need' (2017)
Demis Hassabis
Neuroscientist and entrepreneur; founded DeepMind; developed AlphaGo and AlphaFold
Ilya Sutskever
Machine learning researcher; Chief Scientist, OpenAI; led GPT-3 and GPT-4 development
Geoffrey Hinton
Cognitive psychologist and machine learning pioneer; led deep learning revolution (2012 ImageNet)
Construction
A modern large language model is constructed through a multi-stage pipeline. First, raw text data (books, web pages, code repositories) is collected, cleaned, and tokenized—broken into subword units (typically 50,000–100,000 unique tokens). Second, the transformer architecture is instantiated: an encoder-decoder or decoder-only stack of N layers (typically 12–96), each containing a multi-head self-attention module and a feed-forward network, with residual connections and layer normalization. Third, the model is initialized with random weights and trained on the tokenized corpus using stochastic gradient descent, optimized via backpropagation. Training occurs on distributed GPU or TPU clusters (e.g., Google TPUv4 Pods with thousands of chips), with data parallelism and pipeline parallelism to maximize throughput. The training objective is next-token prediction: the model learns to predict the next token given all previous tokens, a self-supervised task requiring no human labels. Training GPT-3 (175 billion parameters) required approximately 300 billion tokens and cost an estimated $4–6 million in compute. Fourth, the trained model is fine-tuned on smaller, curated datasets (instruction-following, human feedback) to align outputs with human preferences—a process called reinforcement learning from human feedback (RLHF). Finally, the model is deployed to inference servers, where it generates text autoregressively: sampling one token at a time, conditioning each sample on the previous tokens, until a stop token or length limit is reached.
Variations
Encoder-Only (BERT, 2018)
Bidirectional context; optimized for classification and token-level tasks; cannot generate text
Encoder-Decoder (T5, 2019)
Separate encoder and decoder; excels at sequence-to-sequence tasks (translation, summarization)
Retrieval-Augmented (RAG, 2020)
Augments generation with retrieved documents; reduces hallucination; enables knowledge updates without retraining
Decoder-Only (GPT, 2018–present)
Autoregressive; generates text left-to-right; dominant architecture for language modeling
Constitutional AI (Anthropic, 2023)
Fine-tuned via self-critique against a set of principles; aims to reduce harmful outputs
Multimodal (CLIP, 2021; GPT-4V, 2023)
Processes text and images jointly; enables visual reasoning and image captioning
Mixture-of-Experts (Switch Transformers, 2021)
Sparse routing; different tokens attend to different expert subnetworks; reduces compute per token
Efficient Variants (DistilBERT, MobileBERT, 2019)
Smaller, faster models via distillation; deployable on mobile and edge devices
Open-Source (Llama, Falcon, Mistral, 2023–2024)
Weights released publicly; enables community research and commercial deployment without vendor lock-in
Timeline
Date
Event
1936
Turing's 'On Computable Numbers' formalizes the universal computing machineTheoretical foundation for all subsequent AI
1950
Turing publishes 'Computing Machinery and Intelligence'Proposes the Turing Test as a measure of machine intelligence
1956
Dartmouth Summer Research Project on Artificial IntelligenceBirth of AI as a formal discipline
1966
ELIZA chatbot simulates a psychotherapistEarly demonstration of the Turing Test in practice
1974–1980
First AI Winter: funding and interest collapseEarly symbolic AI systems fail to deliver on promises
1997
Deep Blue defeats Garry Kasparov at chessAI surpasses human expert in a complex game
2012
AlexNet wins ImageNet competition by large marginDeep learning revolution begins
2016
AlphaGo defeats Lee Sedol at GoDeep reinforcement learning masters intuitive, creative game
June 2017
Vaswani et al. publish 'Attention Is All You Need'Transformer architecture introduced
2018
GPT-1 released; BERT publishedLarge-scale language models emerge
June 2020
GPT-3 released with 175 billion parametersFew-shot learning and emergent capabilities
November 2022
ChatGPT launches; reaches 1 million users in 5 daysAI enters mainstream consumer awareness
March 2023
GPT-4 released; multimodal (text and image input)State-of-the-art performance across benchmarks
Famous Examples
T5 (Google, 2019)
Encoder-decoder; unified text-to-text framework; excels at translation, summarization, and question-answering
Falcon (TII, 2023)
Open-source; 40–180 billion parameters; trained on diverse multilingual data; competitive performance with lower training cost
BERT (Google, 2018)
340 million parameters; bidirectional context; foundation for Google Search and numerous NLP applications
GPT-3 (OpenAI, 2020)
175 billion parameters; demonstrated few-shot learning and emergent reasoning; basis for ChatGPT
ChatGPT (OpenAI, 2022)
Fine-tuned GPT-3.5; optimized for dialogue; 100+ million users within months; mainstream AI adoption
Claude (Anthropic, 2023)
Constitutional AI; optimized for safety and harmlessness; 100K context window; strong reasoning and code generation
Llama 2 (Meta, July 2023)
Open-source; 7–70 billion parameters; competitive with closed-source models; enables community research
GPT-4 (OpenAI, March 2023)
Multimodal (text and images); improved reasoning and reduced hallucination; state-of-the-art on most benchmarks
Mistral 7B (Mistral AI, 2023)
Efficient open-source model; 7 billion parameters; outperforms larger closed-source models on many tasks
Gemini (Google, December 2023)
Multimodal; trained on text, images, audio, video; competitive with GPT-4; integrated into Google products
Archaeological Finds
The 'archaeological' record of AI is recent and digital, preserved in academic papers, code repositories, and corporate research blogs rather than physical artifacts. Key finds include: (1) the original 1950 typescript of Turing's 'Computing Machinery and Intelligence' in the Turing Archive at King's College Cambridge; (2) the Dartmouth Summer Research Project papers (1956) at Dartmouth College Library, documenting the birth of AI as a discipline; (3) the source code of ELIZA (1966) in the MIT Archives, revealing the simplicity of early chatbots; (4) the weights and architecture specifications of AlexNet (2012) released by Hinton's team, enabling reproducibility and sparking the deep learning revolution; (5) the 'Attention Is All You Need' paper and associated code (2017) on arXiv, which became the most-cited machine learning paper in history; (6) the GPT-2 and GPT-3 model weights and training logs released by OpenAI, enabling analysis of scaling laws; (7) the open-source Llama model weights (Meta, 2023) leaked and then officially released, democratizing access to state-of-the-art models; (8) training datasets such as The Pile (EleutherAI) and LAION-5B, which document the corpus of human knowledge used to train modern models. These digital artifacts are preserved in institutional repositories (arXiv, Hugging Face, GitHub) and corporate archives, forming a record of the AI revolution's technical and social dimensions.
Comparison Panel
Symbolic AI Vs. Deep Learning
Symbolic AI (LISP, logic programming) manipulates discrete symbols according to explicit rules; deep learning learns continuous representations via gradient descent. Symbolic AI excels at formal reasoning; deep learning at pattern recognition and generation.
ELIZA (1966) Vs. ChatGPT (2022)
Both simulate conversation; ELIZA uses hand-crafted rules and pattern matching; ChatGPT uses learned representations from billions of tokens. ELIZA fooled users despite simplicity; ChatGPT generates coherent, contextually relevant text.
Turing Machine (1936) Vs. Transformer (2017)
Both are universal computational models; Turing's is theoretical and sequential; the transformer is practical and parallelizable. Turing proved what is computable; the transformer shows how to compute it efficiently at scale.
Supervised Learning Vs. Self-Supervised Learning
Supervised learning requires human-labeled data; self-supervised learning (next-token prediction) requires only unlabeled text. Self-supervision enables training on billions of tokens; supervised learning is limited by labeling cost.
Closed-Source (GPT-3, GPT-4) Vs. Open-Source (Llama, Falcon)
Closed-source models are proprietary, accessed via API, with limited transparency; open-source models have public weights, enabling local deployment and research. Closed-source enables monetization; open-source enables innovation and competition.
Recurrent Neural Networks (LSTMs, 2015) Vs. Transformers (2017)
RNNs process sequences sequentially, limiting parallelization; transformers process all tokens in parallel via self-attention. Transformers scale better, train faster, and achieve superior performance on long sequences.
Expert Systems (1970s–1980s) Vs. Large Language Models (2020s)
Expert systems encode human knowledge as explicit rules; LLMs learn implicit patterns from data. Expert systems are interpretable but brittle; LLMs are opaque but robust and generalizable.
Interesting Facts
Turing's 1950 paper 'Computing Machinery and Intelligence' predicted that by 2000, machines would be able to imitate humans well enough to fool a judge 30% of the time; this threshold has been exceeded.
The transformer architecture was developed at Google Brain in 2017 by a team of eight researchers; the paper 'Attention Is All You Need' has been cited over 100,000 times, making it the most-cited machine learning paper in history.
GPT-3 (2020) was trained on approximately 300 billion tokens from diverse internet text; the training cost was estimated at $4–6 million and required approximately 3,650 GPU-days of compute.
ChatGPT reached 100 million users faster than any application in history (5 days); by comparison, Instagram took 2.5 months and TikTok took 9 months.
The Turing Test, proposed in 1950, has never been formally passed by any AI system, though some systems (ELIZA, modern chatbots) have fooled individual judges in limited settings.
Large language models exhibit 'emergent abilities' that appear suddenly at certain scales; GPT-3 can perform arithmetic and write code despite not being explicitly trained on these tasks.
The energy cost of training GPT-3 is estimated at 1,287 MWh, equivalent to the annual electricity consumption of approximately 130 U.S. households.
Transformer models use positional encodings (sinusoidal or learned) to inject sequence order information; this allows them to process all tokens in parallel without recurrence.
The self-attention mechanism computes a weighted sum of values for each token, where weights are learned based on the similarity between queries and keys; this allows the model to attend to relevant context.
Modern language models are trained on a mixture of diverse data: books, web pages, code repositories, scientific papers, and social media; this diversity enables broad generalization.
Fine-tuning large language models on human feedback (RLHF) significantly improves alignment with human preferences; this technique was pioneered by OpenAI and Anthropic.
Open-source language models (Llama, Falcon, Mistral) have achieved performance competitive with closed-source models while being orders of magnitude smaller and cheaper to train.
The 'scaling laws' of neural networks suggest that performance improves predictably with model size, data size, and compute; this has enabled researchers to forecast the capabilities of future models.
Transformer models can be adapted for diverse tasks—translation, summarization, code generation, image captioning, protein folding—without task-specific architecture changes.
The context window (maximum number of tokens a model can process at once) has grown from 512 (BERT) to 2,048 (GPT-2) to 4,096 (GPT-3) to 128,000 (Claude 2); larger context enables longer documents and more complex reasoning.
Hallucination (generating plausible-sounding but false information) remains a significant limitation of language models; techniques such as retrieval-augmentation and constitutional AI aim to reduce it.
The compute required to train state-of-the-art models doubles approximately every 3–4 months (as of 2023), following a trend steeper than Moore's Law; this raises questions about the sustainability of current scaling approaches.
Transformer models learn to represent language hierarchically: early layers capture syntax and morphology, while later layers capture semantics and discourse structure.
The attention mechanism allows transformers to learn long-range dependencies directly; recurrent networks must propagate information through many sequential steps, limiting their ability to capture distant relationships.
Constitutional AI (Anthropic, 2023) fine-tunes models via self-critique against a set of principles (e.g., 'be helpful, harmless, and honest'), reducing the need for human feedback and improving alignment.
Quotations
Text
Computing machinery and intelligence. I propose to consider the question 'Can machines think?'
Attribution
Alan Turing, 'Computing Machinery and Intelligence' (1950)
Text
The Imitation Game. A digital computer is said to be thinking if it can imitate a human in conversation so well that an observer cannot tell the difference.
Attribution
Alan Turing, 'Computing Machinery and Intelligence' (1950)
Text
We propose that a 2-month, 10-man study be initiated during the summer of 1956... An attempt will be made to find how to make machines use language, form abstractions and concepts, solve kinds of problems now reserved for humans, and improve themselves.
Attribution
McCarthy, Minsky, Shannon, Rochester, proposal for Dartmouth Summer Research Project (1956)
Text
The men were not disappointed. The machines were not disappointed. The machines were not disappointed.
Attribution
Joseph Weizenbaum, on users' reactions to ELIZA (1966)
Text
Attention is all you need.
Attribution
Vaswani et al., title of foundational transformer paper (2017)
Text
Language models are few-shot learners.
Attribution
Tom Brown et al., GPT-3 paper (2020)
Text
We've trained a large language model called ChatGPT using RLHF (Reinforcement Learning from Human Feedback)... It interacts in a conversational way.
Attribution
OpenAI, ChatGPT announcement (November 2022)
Text
The capability of GPT-4 to understand and generate text is remarkable, but it is not conscious, and it does not have subjective experiences.
Attribution
OpenAI, GPT-4 technical report (March 2023)
Text
We believe that AI systems should be helpful, harmless, and honest. Constitutional AI is a method for training AI systems to be more aligned with human values.
Attribution
Anthropic, Constitutional AI paper (2023)
Text
The question is not whether machines can think, but whether we can understand what they are doing.
Attribution
Yann LeCun, paraphrase of modern AI philosophy (2020s)
Sources
Date
1950
Note
Foundational paper proposing the Turing Test and arguing for the possibility of machine intelligence.
Type
primary
Title
Computing Machinery and Intelligence
Author
Alan Turing
Publication
Mind, vol. 59, no. 236
Date
2017
Note
Introduces the transformer architecture; most-cited machine learning paper in history.
Type
primary
Title
Attention Is All You Need
Author
Vaswani, Ashish et al.
Publication
Advances in Neural Information Processing Systems (NeurIPS)