Track 01
Non-technical audience
You don't need to become an engineer. You need enough fluency to read what AI tools give you, ask for what you want, and put agents to work.
Tools
-
- API keys / tokens vs public keys: what each one is, which one you must keep secret.
-
- Claude→coding
- Gemini→deep research
- ChatGPT→verification / review
- Grok→faster iteration, use with Grok Bot
- Cursor→auto mode, access to multiple models at once
Concepts
-
- Write your own skill: package a repeatable instruction so the model does it the same way every time.
- Set your own context: give the chat the background, files, and rules it needs before you ask.
-
- Spin up background agents to automate a task or a whole workflow while you do something else.
Courses
Track 02
Technical audience
Fundamentals first, then the systems that models run on. The agentic layer sits on top of all of it.
Must-know tools
Concepts
-
- Data Structures
- Algorithms
-
- Distributed Systems
- Databases at scale
- Message Queues
-
- Parallel agents: fan work out, merge results back.
- Skills at scale: reusable, versioned instructions across many agents.
-
- Pre-training
- Training
- Post-training
-
- KV Cache
- GPU Utilization
- Parallelism
- Throughput vs Latency
Track 03
LLM expert
For people who build, train or serve models. Each topic maps to a component in the LLM Atlas, where you can rotate the whole system, follow a lifecycle mode and run the simulations.
Data & tokenization
-
- Licensing, opt-outs, takedowns
- Mixture weighting: which sources get upsampled and why.
-
- Quality filters: heuristic rules and classifiers.
- Exact + fuzzy dedup: hashing, MinHash / LSH.
- PII and secret scrubbing
- Benchmark contamination checks: n-gram overlap against evals.
-
- BPE vs unigram / SentencePiece, vocabulary size, byte fallback.
- Tokenizer decode vs generation decode: two different things called “decode”.
- Atlas: encode → prefill → decode walkthrough
Transformer internals
-
- MHA vs GQA vs MQA
- FlashAttention: exact attention with less memory traffic, not a different objective.
- Atlas: decoder block explorer
Mixture of experts
-
- Total vs active parameters: capacity grows with experts, per-token compute with k.
- Atlas: MoE router simulator
-
- EP vs TP: whole experts vs sliced matrices.
- Placement and hot-expert replication
Pre-training at scale
-
- Global batch, microbatch, gradient accumulation
- Mixed precision: BF16 / FP16 / FP8 and the ~16 bytes per parameter that come with AdamW.
- Gradient clipping, warmup, weight decay
- Atlas: training-step calculator
-
- DP batch · TP tensors · PP depth · CP sequence · EP experts · FSDP / ZeRO optimizer state
- Atlas: 8-GPU parallelism explorer
Post-training
-
- Quality vs quantity, model-assisted and synthetic demonstrations.
- Catastrophic forgetting and replay mixing.
- Atlas: SFT pipeline
-
- Reference policy and KL regularization
- Reward hacking, verbosity bias, judge bias, sycophancy, over-refusal
Inference engine
-
- Chunked prefill: keep decodes responsive while long prompts arrive.
- Atlas: batching visualizer
-
- PagedAttention-style block tables, fragmentation, eviction, offloading.
- KV-cache quantization (distinct from weight quantization).
- Atlas: KV cache calculator
-
- Speedup depends on draft cost, candidate length, acceptance rate, batch size.
- Atlas: speculative decoding visualizer
-
- Weight-only vs weight + activation, calibration, GPTQ / AWQ style, QAT.
- Atlas: weight memory calculator
Serving & observability
-
- GPU utilization only means something next to memory bandwidth, kernel occupancy and communication.
- Atlas: metrics glossary
Primary sources
Have feedback?
This list is intentionally short and will change. Tell me what's missing, what's wrong, or what helped you most.