🎓 Learn
One map,
from zero to the frontier
8 levels, 145 articles. Each labeled by difficulty (🥚🐣🐥).
Read in order, or jump to whatever interests you.
🥚
L0
AI Primer
For everyone
12 lessons
- 01 🥚 9 minAI, ML, DL, LLM — How Are They Related?The four most confused terms in tech today. After this article, no buzzword salad can fool you again.
- 02 🥚 7 minAI History in 15 Minutes: From Turing to ChatGPT70 years compressed into 11 moments. Not a timeline — only the events that changed the game.
- 03 🥚 9 minWhat AI Can and Can't Do — Talking With ReceiptsStop listening to hype and FUD. Item by item: what AI already beats you at, and what it absolutely can't do yet.
- 04 🥚 8 minWhat Is "Hallucination"? Why It Happens, How to MitigateWhy does AI confidently make stuff up? It's not a bug—it's how this kind of AI works. Understand the mechanism, you'll know how to use it.
- 05 🥚 8 minPrompt Engineering Basics: 10 Moves to Make AI 10× More PreciseNo jargon, no fluff. 10 actions, 20 minutes to master. This article alone puts you ahead of 80% of AI users.
- 06 🥚 6 minWhat Is "Intelligence", Really?A word we thought was clear—but never actually defined. The next time you debate "is AI really intelligent," read this first.
- 07 🥚 7 minYour First AI Chat in 5 MinutesTheory's done. Hands-on now. Step-by-step signup, login, and what to say first.
- 08 🥚 8 minWill AI Take My Job? A Framework, Not DoomStop asking "will AI replace me." Start asking "which parts of my job will AI replace?" This framework will serve you for a lifetime.
- 09 🥚 6 minChatGPT vs Claude vs Gemini: An Unbiased ComparisonNo hype, no FUD. The real differences between the top 3 LLMs—so you can pick the right one for what you actually do.
- 10 🥚 7 minAI Data Safety: Where Do Your Chats Go?The contracts, medical records, company secrets you paste into ChatGPT—how are they handled? Who can see them? Once you know, you can use AI with confidence.
- 11 🥚 7 minAI Glossary: 30 Terms for Non-Technical ReadersToken, Embedding, Transformer, RAG, Fine-tuning… the jargon flying around chats. Here's the cheat sheet.
- 12 🥚 7 minL0 Graduation: What's Next?You finished the primer path. This article helps you choose what to learn next—go deeper, go wider, or just build something.
🐣
L1
Math & Python
Minimal prerequisites
11 lessons
- 01 🐣 6 minMath Without Fear: This Is Supposed to Be a Math Class, But Let's Try a Different WayScarred by high school math? It's not your fault. It's the textbook. Here we use diagrams, animations, and Python to make AI math actually make sense.
- 02 🐣 10 minLinear Algebra: Vectors and Matrices via Pictures and PositionsAll of AI is matrix operations under the hood. This one doesn't teach determinants or eigenvalues—just lets you "see" what vectors are doing.
- 03 🐣 8 minDerivatives and Gradients: The Math Definition of "Learning"The essence of "training a neural network" is derivatives. Once you understand this word, AI training stops being mysterious.
- 04 🐣 9 minProbability and Maximum Likelihood: Why ML Is a Probability ProblemAll ML models are actually doing one thing: finding parameters that maximize the probability of seeing the data. Once this clicks, all of ML becomes transparent.
- 05 🐣 6 minInformation Theory: Entropy and Cross-EntropyWhy is the loss function for classification "cross-entropy"? Where does it come from? Information theory has the answer.
- 06 🐣 8 minBackpropagation: The Chain Rule, in ActionHow does a neural network learn? Backpropagation = chain rule + computational graph. Master this, and the rest of DL makes sense.
- 07 🥚 11 minPython Crash Course (Part 1): The Essentials for MLYou don't need to be a Python wizard for ML — you need these 30%.
- 08 🥚 15 minNumPy: Array Operations for MLUnderneath every ML library, there's NumPy. Master arrays and you understand the language of ML.
- 09 🥚 12 minPandas: Data Wrangling for MLReal-world data lives in tables. Pandas is how you clean, explore, and transform them.
- 10 🐣 14 minPyTorch Basics: Tensors, Autograd, nn.ModuleThe deep-learning framework used by 90% of researchers. Tensors + autograd + nn = your gateway to building anything.
- 11 🐣 8 minProbability Distributions: Gaussian / Bernoulli / Poisson / Exponential / CategoricalThe alphabet of statistics — every ML model is built on top of these distributions. This piece walks through the five most common ones with intuition and code.
🐥
L2
Classical ML
Foundations
9 lessons
- 01 🐣 11 minSupervised / Unsupervised / Reinforcement: The Three Worldviews of MLEvery ML algorithm belongs to one of these three. Understand the taxonomy, and any new algorithm finds its home.
- 02 🐣 9 minLinear Regression: The Simplest and Most Profound ML ModelThink linear regression is too simple? It's the last layer of every neural network, the starting point of every ML project, and still beats deep learning in many scenarios.
- 03 🐣 8 minLogistic Regression and ClassificationLinear regression's sibling — but for "yes/no" questions. Foundation for most modern classifiers.
- 04 🐣 10 minDecision Trees: The Most Interpretable ML AlgorithmA chain of yes/no questions forms a tree of decisions. It's the foundation for XGBoost and LightGBM—the champions of Kaggle.
- 05 🐣 11 minRandom Forest + Boosting: From Weak Learners to SuperhumanA single tree is mediocre. A crowd of trees voting is supernatural. The origin story of XGBoost—the Kaggle champion for a decade.
- 06 🐣 11 minK-Means ClusteringThe simplest unsupervised algorithm — and surprisingly useful. Group unlabeled data into k clusters.
- 07 🐣 11 minEvaluation, Overfitting, and RegularizationHow to measure a model and prevent it from "memorizing" training data. Foundational skills before any ML deployment.
- 08 🐣 9 minSupport Vector Machines (SVM)The classifier that dominated ML from 1995-2012. Maximum margin + kernel trick = elegant math, still practical.
- 09 🐣 10 minOptimizers Explained: SGD / Momentum / Adam / AdamWHow do models actually "learn"? Gradient descent is the foundation. This piece covers every modern optimizer.
🧠
L3
Deep Learning
Including Transformer
10 lessons
- 01 🐣 7 minFrom Perceptron to Multi-Layer Neural NetworkA 70-year journey from a single neuron to deep nets. Understand the history, you understand the field.
- 02 🐣 9 minBackpropagation Deep Dive: Chain Rule in ActionBackprop is what makes neural networks actually learn. Unpacking the math, intuition, and implementation.
- 03 🐣 11 minDeep Network Training Tricks: BatchNorm / Dropout / InitializationThe engineering tricks that made deep networks actually trainable — why they're needed, how to use them, when.
- 04 🐣 5 minRNN / LSTM: Rise and Fall of Sequence ModelsBefore Transformers, sequence modeling was RNNs and LSTMs. They got us far — and their limits explain why Transformers won.
- 05 🐣 12 minAttention Explained: From Intuition to Complete DerivationAttention is all you need. This article takes you from "what is it actually doing" to "every line of its formula"—the core of Transformer, fully digested.
- 06 🐣 8 minCNN Convolution Principles: From Filters to ResNetBefore Transformer dominated, CNN ruled computer vision. Today it remains the default for image processing. This article explains "convolution" clearly.
- 07 🐥 9 minAttention Variants: Multi-Head / Cross / Sparse / LinearBeyond Self-Attention — the modern Transformer attention family. Multi-head, cross, masked, sparse, linear, GQA, RoPE.
- 08 🐥 11 minThe Complete Transformer ArchitectureFrom "Attention Is All You Need" to GPT and BERT — walk through the entire Transformer block by block.
- 09 🐣 10 minBERT vs GPT: Two Transformer Architectures ComparedEncoder-only vs decoder-only — the architectural choice that shapes everything. Why GPT dominated.
- 10 🐥 12 minGAN and VAE: Two Routes to Generative ModelsThe two architectures that dominated generative AI before Diffusion. Understand these and you understand why Diffusion won.
🦅
L4
LLM & Generative
The frontier
19 lessons
- 01 🐣 11 minHow LLMs Are Trained: Pretrain → SFT → RLHF, the Full PipelineTraining an LLM isn't one step—it's three completely different stages. Each uses different data, different objectives. After this, you can talk to ML engineers.
- 02 🐣 18 minAdvanced Prompting: CoT / Self-Consistency / Tree of Thoughts / ReflexionL0-05 taught you 10 basics. This one covers the hardcore prompt techniques from research — can push GPT-4 from 50% to 85% on math.
- 02 🐣 13 minTokenizer and BPE: How LLMs Read TextBefore a model sees your text, the tokenizer chops it into "tokens". Understanding this changes how you think about prompts, pricing, and multilingual support.
- 03 🐣 14 minRAG from 0 to 1: Let LLMs Answer Based on Your DataEnterprise AI applications are 90% RAG. This article walks you through building a runnable RAG system—from chunking to deployment.
- 04 🐣 13 minBuilding AI Agents: From Tool Use to Autonomous WorkflowsHow does an LLM "do things"? This piece dissects the Agent: tools, loops, memory, planning.
- 05 🐣 10 minLoRA Fine-Tuning: Custom LLMs on Consumer GPUsHow Microsoft's 2021 paper made it possible to fine-tune billion-param models on a single 4090.
- 06 🐣 9 minIn-Context Learning: Why LLMs Learn From a Few ExamplesThe surprising GPT-3 capability — no fine-tuning, just a few examples and the model can do new tasks. How does it actually work?
- 07 🐣 11 minMCP Protocol Explained: The USB of the AI WorldAnthropic launched MCP in 2024 — letting any tool plug into any LLM. In one year it became the de facto standard for AI Agent ecosystems.
- 08 🐣 7 minLLM Evaluation: From MMLU to Real Business MetricsHow do you know if your LLM app is "good"? This piece covers academic benchmarks + engineering eval tools.
- 09 🐣 10 minTool Use Engineering: Making LLMs Actually ReliableLLMs CAN use tools — but making them use tools "stably, correctly, cheaply" is a separate art.
- 10 🐥 7 minMulti-Agent Systems: AI Teams That CollaborateOne Agent isn't always enough. Many scenarios need specialists collaborating. AutoGen, CrewAI etc. opened the "AI team" era.
- 11 🐣 10 minBuilding MCP Tools: A Hands-On GuideL4-07 explained what MCP is. This piece walks you through writing one that Claude / Cursor can use directly.
- 12 🐣 13 minLLM Cost Optimization: 10× Savings from Prompt to DeploymentLLM calls are expensive and fast — one careless config can torpedo your AWS bill. Practical cost controls.
- 13 🐣 12 minFunction Calling vs Tool Use vs MCP: How to Tell Them ApartThree industry terms that keep getting confused — but they're three layers of the same thing. One piece to sort it out.
- 14 🐣 12 minStructured Output: JSON Mode / Grammars / PydanticMake LLMs return reliable machine-readable results — a must-have for production Agents and workflows.
- 15 🐣 11 minPrompt Caching in Production: Save 90% of LLM CostPrefix caching is supported by Anthropic / OpenAI / Gemini — stop re-paying for the same system prompt every request.
- 16 🐥 11 minVision-Language Agents: Letting AI Operate Your ScreenClaude Computer Use, OpenAI Operator, Gemini 2.5 Computer Use — LLMs see screen + click + type. The most impactful Agent form factor of 2024-2026.
- 17 🐥 11 minAdaptive RAG: Let the LLM Decide Whether and How to RetrieveNaive RAG retrieves on every query — slow, expensive, noisy. Adaptive RAG lets the LLM judge first, then decide how to retrieve, how many times, or whether to skip.
- 18 🐥 11 minEval-Driven Development: Let Eval Drive Your LLM AppTDD is "test-driven"; EDD is "eval-driven" for the LLM era — eval comes before prompts, model selection, and features. The core methodology of 2026 LLM engineering.
🎨
L5
Multimodal
Diffusion / Video / 3D
9 lessons
- 01 🐣 11 minMultimodal Overview: How AI "Sees, Hears, and Reads" at OnceGPT-4o recognizes your sketch, Sora generates video—how does "multimodal" AI work? This article opens the panoramic view.
- 02 🐥 9 minDiffusion Math: From Adding Noise to GenerationStable Diffusion, DALL·E 3, Sora all use diffusion models. This article explains the core math—with minimal formulas.
- 03 🐣 12 minViT and CLIP: Teaching Transformers to SeeSlice images into patches, feed to Transformer—the biggest paradigm shift in computer vision in 2020.
- 04 🐣 6 minWhisper: Speech Recognition Solved (Mostly)OpenAI's open-source ASR model — multilingual, robust, free. How it works + why it dominated.
- 05 🐣 9 minText-to-Speech: Voice Synthesis Goes MainstreamElevenLabs, OpenAI TTS, Suno — voice synthesis went from robotic to human in 5 years. How.
- 06 🐥 10 minVideo Generation: From Sora to Modern Video AISora, Runway Gen-3, Veo, Kling… 2024-2026 video generation exploded. Technical principles + engineering + market landscape.
- 07 🐥 11 min3D Generation: NeRF / Gaussian Splatting / Text-to-3DThe next wave of AI content after 2D — reconstruct 3D from a few photos, generate 3D assets from text.
- 08 🐥 8 minAI Music: The Tech and Business of Suno / Udio / MusicGenFrom 2024 to 2026 AI music went from "sounds like AI" to "indistinguishable from human." Suno v5, Udio, MusicGen tech + legal battles + business models.
- 09 🐥 8 minRobotics + LLM: VLA Models and Embodied AIPaLM-E, RT-2, π0, Optimus — LLMs and robots officially merge. "See + think + act" in one model. The 2026 embodied intelligence landscape.
🛡️
L6
Safety & Alignment
Critical topics
8 lessons
- 01 🐣 8 minWhy AI Alignment: From Right/Wrong to ValuesThe more capable an AI, the more critical alignment becomes. This article clarifies what "alignment" really means and why it's one of the most important AI research directions.
- 02 🐥 10 minRLHF vs Constitutional AI: Two Mainstream Alignment Methods ComparedOpenAI uses RLHF; Anthropic uses CAI. Both make LLMs "listen", but with completely different philosophies.
- 03 🐥 9 minRed Teaming and Jailbreaks: How LLMs Get AttackedThe "antagonist" perspective in AI safety — what people who find model exploits actually do. You can't defend without understanding attacks.
- 04 🐥 6 minMechanistic Interpretability: Seeing What Neurons ThinkLLMs are black boxes — but researchers can now extract specific concepts from billions of parameters. Welcome to AI psychology.
- 05 🐣 8 minBias and Fairness: AI Inherits Humanity's ShadowsTraining data mirrors human society — and AI learns the biases, stereotypes, and unfairness with it. Confronting the problem head-on.
- 06 🐣 7 minAI Policy and Regulation: EU AI Act / US EO / China's Rules ComparedLegal obligations for AI companies and applications are evolving fast. Side-by-side comparison of the three major regulatory frameworks.
- 07 🐣 8 minAI Safety Research: How to Enter the FieldWant to do AI safety research? This piece covers directions, organizations, starter projects, recommended reading — one of the rarest talent areas in 2026.
- 08 🐥 9 minCoT Safety: Is the Reasoning Model "Thinking" Trustworthy?Anthropic 2025 evidence: Claude 3.7 and DeepSeek R1 chain-of-thought is honest only 25-39% of the time — CoT monitoring can't fully replace alignment.
⚙️
L7
Systems & Eng
Production
8 lessons
- 01 🐣 11 minGPU Crash Course: Why AI Can't Live Without ItWhat is A100, H100, B200? Why does AI use GPUs not CPUs? Open the hardware black box.
- 02 🐥 12 minDistributed Training: DP / DDP / FSDP / Tensor ParallelWhen one GPU isn't enough — how to spread training across N GPUs efficiently.
- 03 🐥 12 minInference Optimization: vLLM / Quantization / Speculative Decoding / KV CacheTraining is just the start. Making LLMs run fast, cheap, and stable in production is a different art.
- 04 🐥 12 minQuantization Deep Dive: GPTQ / AWQ / FP8 / GGUFFitting 70B models in 24GB VRAM — quantization is the key to running big models on consumer hardware. Full coverage.
- 05 🐥 11 minModel Deployment: From Trained to ProductionTraining a model is just the beginning. How to turn it into a 24/7 stable, cheap, scalable service?
- 06 🐥 12 minAdvanced Training Techniques: Gradient Checkpointing, Mixed Precision, ZeRO OffloadEngineering tricks that make 70B model fine-tuning possible on consumer cards. The toolkit that makes "big training" affordable.
- 07 🐣 14 minMonitoring and Observability: LLM Application ProductionOnce your LLM product is live — how do you know if it's OK? Slow, broken, expensive, attacked? The monitoring stack.
- 09 🐥 15 minLLMOps Panorama: Observability / Eval / Monitoring / ExperimentsThe real work begins after LLM apps ship — Langfuse, Helicone, OpenTelemetry, continuous eval, A/B experiments. The complete 2026 LLMOps stack.