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.
15 questions · take it digitally for instant feedback at tendril.neural-forge.io/learn/quiz/end-creators-three-ingredients-capstone
What is the core idea behind "The Three Ingredients: Data, Compute, Algorithms (Capstone)"?
Which term best describes a foundational idea in "The Three Ingredients: Data, Compute, Algorithms (Capstone)"?
A learner studying The Three Ingredients: Data, Compute, Algorithms (Capstone) would need to understand which concept?
Which of these is directly relevant to The Three Ingredients: Data, Compute, Algorithms (Capstone)?
Which of the following is a key point about The Three Ingredients: Data, Compute, Algorithms (Capstone)?
Which of these does NOT belong in a discussion of The Three Ingredients: Data, Compute, Algorithms (Capstone)?
Which statement is accurate regarding The Three Ingredients: Data, Compute, Algorithms (Capstone)?
Which of these does NOT belong in a discussion of The Three Ingredients: Data, Compute, Algorithms (Capstone)?
What is the key insight about "Bitter lesson revisited" in the context of The Three Ingredients: Data, Compute, Algorithms (Capstone)?
What is the recommended tip about "Ground your practice in fundamentals" in the context of The Three Ingredients: Data, Compute, Algorithms (Capstone)?
Which statement accurately describes an aspect of The Three Ingredients: Data, Compute, Algorithms (Capstone)?
What does working with The Three Ingredients: Data, Compute, Algorithms (Capstone) typically involve?
Which best describes the scope of "The Three Ingredients: Data, Compute, Algorithms (Capstone)"?
Which section heading best belongs in a lesson about The Three Ingredients: Data, Compute, Algorithms (Capstone)?
Which section heading best belongs in a lesson about The Three Ingredients: Data, Compute, Algorithms (Capstone)?