Track 00 · Welcome to AI · 12 min
AI in 2026. The Honest Map.
From rule-based programs in 1965 to autonomous agents in 2026 — what AI actually is, what it can really do, and how to think about it without the hype. Built around six interactive visualizations you can play with as you read.
#The hook
In 2014, it meant a program winning at Atari. In 2017, it meant beating the world champion at Go. In 2022, it meant ChatGPT writing your kid's essay. In 2026, it means agents that book your flight, debug your code, and operate your computer like you do.
#Why this matters in 2026 — the receipts
Before any theory, the numbers. AI in 2026 is no longer a research bet — it's a deployed, multi-trillion-dollar industry. Animated counts so you don't gloss over them:
2026 by the numbers
AI's footprint right now
1B+
ChatGPT weekly users
OpenAI, 2025
30%
Anthropic code by Claude
Anthropic, 2025
200M+
Protein structures predicted
AlphaFold, 2024
$4T
AI-driven market cap added
Bloomberg, 2025
If one statistic captures the disorienting speed of the shift:
2 months
The fastest 100 million users in history
ChatGPT crossed 100M users in two months — the fastest consumer adoption of any product in human history. TikTok took 9 months. Instagram took 30. Facebook took 4 years. The 'AI takeover' wasn't a single moment; it was a single Tuesday in November 2022.
Reuters, UBS analyst note · Feb 2023
The viz below makes the same point sector-by-sector — tap a domain to see the deployed outcome.
#The 30-second answer
AI is software that learns patterns from data instead of being told the rules.
That's it. The rest of the article is just the consequences — what kinds of patterns, what kinds of data, and how the methods got dramatically better.
To make that concrete: try classifying spam yourself. Drag the rules around and see how a human-written rule-based filter behaves vs. a learned one.
#The decade nobody saw coming, decade by decade
Before the eras: the dates. Each of these is the moment a thing-everyone-said-was-impossible became routine.
The receipts
Twelve years that compressed forty years of AI predictions
AlexNet wins ImageNet
A 3-layer CNN halves the image-recognition error rate overnight. Modern deep learning begins.
DeepMind Atari
A neural net learns to play Atari from raw pixels — without being told the rules. Deep RL arrives.
AlphaGo defeats Lee Sedol
4-1 against the human Go world champion. Said-impossible until that week.
Attention Is All You Need
The transformer paper. Quietly the most important AI architecture ever published.
GPT-3
175B parameters. Few-shot learning emerges from pure scale. The path to ChatGPT becomes obvious.
ChatGPT
100M users in two months. Public consciousness of AI changes overnight.
AlphaFold wins Nobel
Hassabis and Jumper win the Chemistry Nobel for AlphaFold 2. AI moves into the canon of science.
Reasoning models
OpenAI o1, Claude Opus 4, DeepSeek R1. Models that think before they speak. Math/code benchmarks fall.
Agents go mainstream
Claude Code writes 30% of Anthropic's code. Cursor crosses 1M paid users. The chatbot era ends.
“AI is the new electricity. Just as electricity transformed almost everything 100 years ago, today I actually have a hard time thinking of an industry that I don't think AI will transform in the next several years.”
#The three eras (and why they matter)
You'll hear "AI" used to describe things from 1965 and from 2026 in the same sentence. They're as different as a horse and a Tesla. Here's the shorthand visualized:
The map
From rules to representations to agents
Era 1 — Symbolic AI
1955 – ~2010Humans wrote the rules. Lots of them.
- Expert systems, hand-coded chess heuristics, decision trees by hand.
- Worked for narrow, well-defined problems — failed on anything messy (handwriting, photos, language).
- Two AI winters: broken promises, slashed funding, careers redirected.
Era 2 — Classical ML
~1995 – ~2015Statisticians taught machines to find rules in data — but humans still designed the features.
- Logistic regression, SVMs, random forests, XGBoost. Still the right tool for most tabular problems.
- Powers Netflix recommendations, credit scoring, fraud detection today.
- Bottleneck: humans had to hand-design features. For images and language, that was hopeless.
Era 3 — Deep learning + LLMs
~2012 – nowMachines find their own features. The model is in charge.
- Stacks of layers learn from raw data: lower layers find edges, middle layers find shapes, top layers find 'cat' vs 'dog'.
- Three ingredients had to align: massive data + GPUs + a few key inventions (backprop, ReLU, BatchNorm, transformer).
- ChatGPT in 2022 was the public's first encounter. By 2026, Claude writes 30% of Anthropic's code.
The mental model
Three eras, side by side
Same problem (classify spam), three completely different solutions over fifty years.
| Symbolic AI (1955+) | Classical ML (1995+) | Deep Learning (2012+) | |
|---|---|---|---|
| Who designs the rules? | Human, by hand | Human designs features, model fits weights | The model finds its own features |
| Handles messy real-world data? | No | Partial | Yes |
| Needs labeled data? | No | Yes (lots) | Yes (huge amounts) |
| Interpretable? | Yes | Yes | Partial |
| Scales with more data? | No | Plateaus | Keeps improving |
| Famous example | MYCIN (1972) | FICO score (1989) | GPT-4 (2024) |
#How it actually works — three pillars, each with a demo
Strip away the hype and modern AI rests on three ideas. Each of these is a button below — the first one ships an animated demo with a live loss landscape; the next two are real interactive labs you can play with.
#Pillar 1 — Pattern recognition by minimizing loss
#Pillar 2 — Representation learning
The breakthrough that turned ML from "useful" into "uncanny" was teaching machines to invent their own concepts.
The same trick works for everything: layers learn edges → textures → object parts → objects (vision); letters → words → grammar → meaning (language); amino-acid neighbourhoods → secondary structure → 3D fold (AlphaFold).
#Pillar 3 — Scale + the transformer
Three more concepts the field uses constantly
Vocabulary you'll see everywhere
Concept
Embedding
A vector of numbers that captures the meaning of a piece of data in a learned space.
Like: A GPS coordinate, but for ideas. Things that mean similar things end up near each other.
e.g. OpenAI text-embedding-3, used by Perplexity for RAG
Concept
Fine-tuning
Take a pretrained model and train it further on your specific data to specialize it.
Like: A neurosurgeon who already went to med school. You don't start from scratch.
e.g. ChatGPT is GPT-3.5 fine-tuned with RLHF for chat
Concept
Hallucination
When an LLM produces text that sounds confident but is factually wrong.
Like: A very smart parrot — it learned to sound right, even when it doesn't know.
e.g. An LLM citing a paper that doesn't exist
Concept
RAG
Give the model a knowledge base it can search before answering. Reduces hallucination.
Like: Open-book exam vs. closed-book. The model 'looks up' before answering.
e.g. Perplexity, ChatGPT enterprise search
Concept
Context window
How many tokens (≈ words) the model can 'see' at once before forgetting the start.
Like: Working memory. Bigger window = remember more of the conversation.
e.g. Gemini 3 Pro has a 2M-token window
Concept
Agent
An LLM that can take actions — read files, call APIs, run code — not just respond.
Like: A chef who can not just suggest a recipe but cook it.
e.g. Claude Code editing your repo and opening a PR
#What's been built with this
Real-world receipts
What modern AI has actually shipped
Conversational LLM
ChatGPT
1B+
Weekly active users
Reached 100M users in 2 months — fastest consumer app adoption in history. Now powers writing, coding, and search for billions.
Pillar 3 — transformer + RLHF + scale
Protein structure
AlphaFold
200M+
Structures predicted
Solved protein folding — a 50-year grand challenge. Earned the 2024 Nobel Prize in Chemistry. Free for academic use.
Pillar 2 — deep representation learning
Vision + planning
Tesla Autopilot
4M+
Vehicles deployed
Neural networks running at 100 Hz on custom car silicon. Trained on petabytes of real-world driving footage.
Pillar 2 + custom hardware
AI pair programmer
GitHub Copilot
15M+
Paid developers
Writes 46% of new code in files where it's enabled. Spawned the agentic-IDE wave (Cursor, Windsurf, Claude Code).
Pillar 3 — code-trained LLM
Image generation
Stable Diffusion / FLUX
100M+
Images generated/day
Open-weights image models that rival closed alternatives. Reshaped illustration, design, marketing — and copyright law.
Diffusion models
Video generation
Sora / Veo
60s
Coherent video, single prompt
Text-to-video crossed the 'looks real' line in 2024. By 2026, agency-grade ad creative is being shipped from prompts.
Diffusion + transformers
#Where the frontier is in 2026 — the loop is getting closed
Four directions are pulling the field forward right now:
The 2026 lineup
Frontier models you should know
| Model | Org | Released | Type | Notable for |
|---|---|---|---|---|
Claude Opus 4.7 | Anthropic | 2026 | Closed | Reasoning + coding leaderSWE-bench · 78% |
GPT-5 | OpenAI | 2026 | Closed | General-purpose, multi-modal |
Gemini 3 Pro | 2026 | Closed | 1M+ context, video native | |
Llama 4 | Meta | 2025 | Open weights | Best open-weights in its size class |
DeepSeek V3 / R1 | DeepSeek | 2025 | Open weights | Reasoning open-weights, $5M training cost |
Qwen 3 | Alibaba | 2025 | Open weights | Strong multilingual, instruction tuning |
Mistral Large 3 | Mistral | 2025 | Open weights | European, function-calling specialist |
#Try it yourself — train a real model in 60 seconds
# The "Hello World" of machine learning
from sklearn.datasets import load_iris
from sklearn.ensemble import RandomForestClassifier
from sklearn.model_selection import train_test_split
# 1. Load 150 iris flowers, each with 4 measurements (petal length, etc.)
X, y = load_iris(return_X_y=True)
species = ["setosa", "versicolor", "virginica"]
# 2. Hold out 30 flowers as a test set the model never sees during training
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=30, random_state=42)
# 3. Train a random forest — 100 decision trees that vote
model = RandomForestClassifier(n_estimators=100, random_state=42).fit(X_train, y_train)
# 4. Show the model a brand-new flower and ask its species
new_flower = [[5.1, 3.5, 1.4, 0.2]] # sepal length, sepal width, petal length, petal width
prediction = model.predict(new_flower)[0]
confidence = model.predict_proba(new_flower)[0].max()
print(f"Test-set accuracy: {model.score(X_test, y_test):.1%}")
print(f"New flower predicted as: {species[prediction]} (confidence: {confidence:.0%})")That's the entire ML loop in 10 lines. Load data → train model → make a prediction. Everything else in this article — deep learning, transformers, agents, RAG — is variations on this same pattern, scaled up and made more sophisticated.
To see what your trained model "looks like", here's the same idea visualized as a decision boundary on a 2-D dataset:
#Where to go next
If this clicked, here's the four-step path through the curriculum that takes you from this article to "I could build something":
- Welcome to AI track — six 15-minute lessons that cover what's in this article and a bit more, with more interactive visualizations. Start here for intuition.
- Python Foundations — if you don't yet code, this is where you start. Every later track assumes Python, and the lessons run in your browser.
- Math Foundations — vectors, calculus, and probability presented for ML. You don't need a math degree, but you do need this much.
- Classical ML — your first real models. Linear regression to XGBoost. The 80% of "AI" that isn't an LLM.
Once through those four, you have a real choice point: deep learning, transformers/LLMs, or jump straight to building agents and RAG systems. We'll write a sibling article for each.
#Key takeaways
Key Takeaways
- AI is software that learns patterns from data, not software that follows rules.
- Three eras: symbolic AI (write rules), classical ML (hand-design features), deep learning (let the model find its own features).
- Modern AI's recipe: a lot of data + a lot of compute + a few key inventions (backprop, transformers).
- An LLM is a transformer trained to predict the next word at internet scale. The 'intelligence' is emergent from that.
- The 2026 frontier: reasoning models, agentic AI, multi-modal, open-weights closing the gap.
- You don't need to train models to be useful with AI. Most production work is fine-tuning or API integration.
#References & further reading
A short list of sources I'd actually re-read.
- LeCun, Bengio, Hinton — Deep Learning (Nature, 2015). The field's coming-of-age paper. (Open access)
- Vaswani et al. — Attention Is All You Need (NeurIPS 2017). The transformer paper. (arXiv)
- Kaplan et al. — Scaling Laws for Neural Language Models (2020). Why "make it bigger" works. (arXiv)
- 3Blue1Brown — But What Is a Neural Network? (YouTube series). The most beautiful intro to neural nets ever filmed.
- Andrej Karpathy — Neural Networks: Zero to Hero (YouTube). Builds GPT from scratch in a notebook. Free graduate-level course.
- Lilian Weng's blog (lilianweng.github.io). The single best technical writer in AI today.
- Anthropic's interpretability papers (transformer-circuits.pub). Where mechanistic interpretability lives.
- Anthropic — On the Biology of a Large Language Model (2024). What's actually inside Claude.
- OpenAI — Learning to Reason with LLMs (o1 announcement, 2024). The reasoning-models pivot.
- Meta — The Llama 4 Herd (2025). State of open weights.