Loading lesson…
Every AI breakthrough of the past decade rests on three interacting ingredients. Synthesize everything you have learned into one working model.
At the broadest possible level, every AI system in history is a mix of three ingredients. Data provides the examples. Compute runs the calculations. Algorithms decide how the calculations relate to each other. Shifting any one of them creates a new era.
| Era | Data | Compute | Algorithm |
|---|---|---|---|
| 1980s expert systems | Handwritten rules | Desktop CPUs | Rule-based inference |
| 2000s statistical ML | Small curated datasets | Commodity servers | SVM, decision trees |
| 2010s deep learning | ImageNet-scale labeled sets | GPUs in parallel | Convolutional and recurrent nets |
| 2020s LLM era | Internet-scale text + human feedback | Datacenter-scale clusters | Transformer with RLHF |
| 2025-2026 reasoning era | Synthetic + verifiable traces | Test-time inference scaling | RL on self-generated reasoning |
# Minimal training config sketch config = { "model": { "layers": 24, "d_model": 2048, "n_heads": 16, "kv_heads": 4, "vocab_size": 32000, "max_seq_len": 2048, "position_embedding": "rope", }, "train": { "tokens": 20_000_000_000, # ~20 tokens per param, Chinchilla-ish "batch_size": 512, "optimizer": "adamw", "lr": 3e-4, "schedule": "cosine", }, "data": { "sources": ["fineweb", "the_stack_v2", "textbooks_synthetic"], "dedup": True, "language_filter": "en", }, }Every decision here is a bet on one of the three ingredients.Everything in AI is ultimately a budget problem with three line items.
— A systems researcher
The big idea: AI is not magic. It is three ingredients, thousands of engineers, and careful attention to which ingredient is scarce this year. You now have the vocabulary, the history, and the mental model to reason about whatever comes next.
8 questions · take it digitally for instant feedback at tendril.neural-forge.io/learn/quiz/end-creators-three-ingredients-capstone
What is the main idea of "The Three Ingredients: Data, Compute, Algorithms (Capstone)"?
Which concept is most central to "The Three Ingredients: Data, Compute, Algorithms (Capstone)"?
Which use of AI fits this topic best?
What should a careful learner remember about "Bitter lesson revisited"?
You want to use AI after this lesson. What is the safest next step?
How should AI output about data be treated?
Name one way to verify an AI answer about data.
Which action would help you apply "The Three Ingredients: Data, Compute, Algorithms (Capstone)" responsibly?