cd /news/large-language-models/how-to-train-your-gpt Β· home β€Ί topics β€Ί large-language-models β€Ί article
[ARTICLE Β· art-113632] src=github.com β†— pub= topic=large-language-models verified=true sentiment=↑ positive

How to Train Your GPT

A new 12-chapter, 7,500+ line interactive textbook teaches readers how to build, train, and run a modern language model from scratch, covering the architecture behind ChatGPT, Claude, LLaMA, and Mistral. The guide, written in child-friendly language with no jargon, includes 28 standalone topic explainers and two narrative walkthroughs, requiring only basic Python knowledge. It aims to provide deep understanding of components like attention, RoPE, and RMSNorm, with every line of code annotated.

read10 min views1 publishedAug 27, 2026
How to Train Your GPT
Image: Michielbdejong (auto-discovered)

A guide to building a world-class language model from absolute scratch. Taught like you're five. Built like you're an engineer.

I made this with the goal of learning something I didn't understand completely. Specifically the attention part. I use AI a lot to understand key concepts and verifying them.

This is a 12-chapter, 7,500+ line interactive textbook that teaches you how to build, train and run a modern language model from absolute scratch. The same family of architecture behind ChatGPT, Claude, LLaMA and Mistral.

Alongside the chapters there are 28 standalone topic explainers covering every technique in depth. RoPE, attention, RMSNorm, SwiGLU, KV cache, AdamW, mixed precision and more. Plus two narrative walkthroughs that trace a single sentence through the entire model step by step. Each file follows the same style: child language, no jargon, a code example you can run.

You won't just read about Transformers. You'll write every line yourself: tokenizer, embeddings, attention, training loop, inference engine. Every single line annotated to explain what it does and why it's there.

Most ML tutorials fall into one of two traps:

❌ Too Shallow ❌ Too Academic βœ… This Guide
model = GPT().fit(data)
40-page papers, dense notation 5-year-old analogies β†’ full working code
You learn to call APIs Assumes PhD in ML Zero ML experience required
No understanding of internals No worked examples Every line annotated with WHAT & WHY

The goal: After finishing, you won't just know that attention "works". You'll understand the variance argument behind 1/√d_k

. How RoPE captures relative position through rotation. Why pre-norm beats post-norm for deep networks. And exactly where every gradient flows during backpropagation.

πŸ§‘πŸ’» You Are... πŸ“š You Need...
A Python developer curious about how ChatGPT actually works Basic Python (functions, classes, lists). No ML experience
A student who wants to deeply understand Transformers Willingness to read ~3,500 lines of commented code
An engineer evaluating LLM architectures Understanding of tradeoffs (RoPE vs learned, RMSNorm vs LayerNorm)
Someone who got lost at "attention" in other tutorials Party analogy + worked numeric example with real numbers

πŸ”§ Prerequisites: Python basics (variables, functions, classes, pip install

). That's it. No calculus, no linear algebra, no PyTorch experience required. We teach those as we go.

Chapter What You'll Learn
What is a GPT? The big picture
Install tools, GPU vs CPU, venv, PyTorch basics
BPE walkthrough: how "unbelievably" becomes tokens
How numbers become meaning. king βˆ’ man + woman = queen
RoPE: why LLaMA rotates vectors, not adds numbers
⭐ THE CORE. Q,K,V, scaling, causal mask, 8-step walkthrough
RMSNorm, SwiGLU, residuals, pre-norm vs post-norm
151M parameter model (with SwiGLU), weight tying, logits explained
Cross-entropy, backprop, AdamW, cosine warmup, mixed precision
KV cache, temperature, top-k/p, beam search, repetition penalty
Runnable main.py : everything in one file
Architecture provenance table, parameter breakdown

⭐

Start withEach builds on the previous.[Chapter 0]and read sequentially.

🧩 Component πŸ“ Lines πŸ’‘ What You'll Understand
BPE Tokenizer
~60 How GPT-4 splits "unbelievably" β†’ "un" + "believ" + "ably"
Embeddings
~30 How "cat" and "dog" end up near each other in 768D space
RoPE
~70 Why LLaMA rotates vectors instead of adding position numbers
Multi-Head Attention
~120 The exact 8-step computation behind every modern LLM
Transformer Block
~50 Why residual connections are the "gradient highway"
Full GPT Model
~200 151M parameter model with SwiGLU, weight tying and pre-norm
Training Pipeline
~250 AdamW, cosine warmup, mixed precision, gradient accumulation
Inference Engine
~80 KV cache, temperature, top-k/p, beam search

πŸ’Ž

~860 lines of core model code, ~2,600 lines of explanation and diagrams

This guide implements the latest publicly-documented decoder-only Transformer:

🧬 Technique πŸ“¦ Source Model ⚑ Why It Matters
RoPE
LLaMA, Mistral, Qwen Relative position without learned parameters
RMSNorm
LLaMA, Mistral, Gemma 15% faster than LayerNorm, equally effective
SwiGLU
PaLM, LLaMA, Gemini Learns which information to pass or block
Pre-Norm
GPT-3, all modern Stable training at 100+ layers
AdamW
GPT-3+ Better generalization than vanilla Adam
BPE
GPT-2/3/4 Handles any text. Even unseen words and emoji
Weight Tying
GPT-2/3 Saves 30% parameters, improves training signal
Mixed Precision
All production LLMs 2Γ— speed, half memory, same quality

ℹ️ GPT-4 and Claude architectures are proprietary/undisclosed. This teaches the best publicly-confirmed architecture: what LLaMA 3, Mistral and Qwen 2.5 use.

git clone https://github.com/raiyanyahya/how-to-train-your-gpt.git
cd how-to-train-your-gpt

python -m venv gpt_env
source gpt_env/bin/activate          # Mac/Linux

pip install torch tiktoken datasets numpy matplotlib --index-url https://download.pytorch.org/whl/cpu

pip install -r requirements.txt

python -c "import torch; print(f'CUDA: {torch.cuda.is_available()}')"

open chapters/00_overview.md

Run the training script:

python main.py

This uses the tiny config (d_model=256, 4 layers) by default. Training takes a few minutes on CPU. For the GPT-2 scale config (151M params, 768 dims, 12 layers), edit the config in main.py and uncomment the larger configuration.

πŸ’» The default config uses a tiny model (d_model=256, 4 layers, 17M params) that runs in minutes on CPU. For the full GPT-2 scale (151M params, 768 dims, 12 layers), edit the config in

main.py

and uncomment the larger configuration. You'll need a GPU for that one.

Alongside the textbook, each chapter has a companion notebook you can run live. These strip away the explanations and give you pure, clean code that executes from top to bottom. If the textbook teaches you why, the notebooks let you see it happen.

We're going to run this whole project on a very small dataset so you can watch training happen in minutes rather than weeks. Every notebook is self-contained. Open it, run all cells and you'll see the model learn in real time.

pip install jupyter tiktoken torch numpy datasets matplotlib --index-url https://download.pytorch.org/whl/cpu

jupyter notebook notebooks/02_tokenization.ipynb

Notebooks live in the notebooks/

directory, one per chapter. Open any of them and hit Cell β†’ Run All.

Each concept in this guide has a dedicated deep dive inside explanations and examples WIP/

. These are written in the simplest possible language. No jargon. No formulas before analogies. Every explainer covers what, where, why, when and how with a code example you can run.

The last two files are narrative walkthroughs. A Token's Journey follows one sentence through the entire model. The Complete Story covers every component across 22 parts. Read these after the chapters to see how everything connects.

Topic File What It Covers
RoPE

attention.mdbpe_tokenization.mdembeddings.mdrmsnorm.mdswiglu.mdcausal_masking.mdresidual_connections.mdkv_cache.mdsampling.mdmixed_precision.mdadamw.mdweight_tying.mdgradient_clipping.mdcosine_warmup.mdpre_norm.mdgrouped_query_attention.mdflash_attention.mdhow_to_read_loss.mdmixture_of_experts.mdspeculative_decoding.mdperplexity.mdbeam_search.mdcheatsheet.mdfaq.mdencoder_decoder_architectures.mdA Token's Journeya_tokens_journey.mdThe Complete Storythe_complete_story.mdEach chapter follows the same 4-step structure:

Step Format Purpose
1️⃣ Analogy
Plain English, 5-year-old level Build intuition before math
2️⃣ Worked Example
Real numbers traced through See exactly what happens
3️⃣ Annotated Code
Every line: WHAT + WHY
Understand every decision
4️⃣ Diagram
Mermaid flowchart or ASCII Visualize data flow

πŸ’‘

Tip:Lost in the code? Jump back to the analogy. Confused by the math? Skip to the worked example.

Aspect 😴 Typical Tutorial πŸ”₯ This Guide
Explanation depth
"Attention helps the model focus" 8-step worked example with real numbers + variance math + causal mask visualization
Code comments
Few or none Every single line: WHAT + WHY
Modern techniques
GPT-2 style (2019) LLaMA 3 style (2024): RoPE, RMSNorm, SwiGLU
Training
Uses HuggingFace Trainer Full custom loop: AdamW, cosine warmup, mixed precision, grad accumulation
Inference
model.generate()
Temperature, top-k, top-p, beam search, KV cache explained
Target audience
ML engineers Python developers with zero ML experience
Diagrams
None Mermaid flowcharts + ASCII matrices + worked examples
  • βœ… Explain how GPT-4 tokenizes text using BPE
  • βœ… Understand why RoPE, RMSNorm and SwiGLU replaced older techniques
  • βœ… Compute attention scores manually for a 3-token sentence
  • βœ… Debug a Transformer training loop (loss spikes, flat lines, overfitting)
  • βœ… Choose sampling parameters (temperature, top_k, top_p) for different use cases
  • βœ… Understand why KV caching is critical for production inference
  • βœ… Read modern ML papers with confidence (you'll recognize every component)
Experiment What to Change What You'll Learn
Bigger model
num_layers 12 β†’ 24
How depth improves reasoning
More data
Add BookCorpus, C4, The Pile Impact of data quality and diversity
Flash Attention
Install flash-attn , swap attention
2-5Γ— faster training, longer context
Grouped Query Attention
Set num_kv_heads < num_heads
How Mistral achieves efficient inference
LoRA fine-tuning
Add low-rank adapter layers Customize models without full retraining
RLHF / DPO
Add reward model training How ChatGPT learns to follow instructions
KV Cache
Implement persistent key-value storage 500Γ— faster text generation
Mixture of Experts
Route tokens through different FFN experts How GPT-4 scales to trillions of params
πŸ“¦ how-to-train-your-gpt/
β”œβ”€β”€ πŸ“„ README.md              ← You are here
β”œβ”€β”€ 🐍 main.py                ← Runnable training script (clone & run)
β”œβ”€β”€ πŸ“‹ requirements.txt       ← One command install
β”œβ”€β”€ πŸ“‚ chapters/
β”‚   β”œβ”€β”€ 🏠 00_overview.md     ← What is a GPT? Why build one?
β”‚   β”œβ”€β”€ πŸ”§ 01_setup.md        ← Install tools, GPU vs CPU, venv basics
β”‚   β”œβ”€β”€ πŸ”ͺ 02_tokenization.md ← BPE walkthrough, EOS tokens, emoji handling
β”‚   β”œβ”€β”€ 🧊 03_embeddings.md   ← How numbers become meaning, king βˆ’ man + woman
β”‚   β”œβ”€β”€ πŸ“ 04_positional_encoding.md ← RoPE math, numerical example, theta
β”‚   β”œβ”€β”€ 🧠 05_attention.md    ← ⭐ THE CORE (713 lines). Q,K,V, scaling, causal mask
β”‚   β”œβ”€β”€ 🧱 06_transformer_block.md ← RMSNorm, SwiGLU, residuals, pre-norm vs post
β”‚   β”œβ”€β”€ πŸ—οΈ 07_gpt_model.md    ← Complete 151M model, weight tying, logits explained
β”‚   β”œβ”€β”€ πŸ‹οΈ 08_training.md     ← Cross-entropy, backprop, AdamW, cosine warmup
β”‚   β”œβ”€β”€ 🎀 09_inference.md    ← KV cache, temperature, top-k/p, beam search
β”‚   β”œβ”€β”€ πŸ“œ 10_full_script.md  ← About main.py
β”‚   └── πŸ“Š 11_glossary.md     ← Architecture provenance, parameter breakdown
β”œβ”€β”€ πŸ““ notebooks/             ← Jupyter notebooks (one per chapter)
β”‚   β”œβ”€β”€ 🎨 attention_visualized.ipynb ← Watch attention weights in action
β”‚   └── ☁️ colab_train.ipynb  ← One-click cloud training on Colab
β”œβ”€β”€ 🎯 fine-tuning/           ← Fine-tuning guide: LoRA, QLoRA, data prep
β”‚   β”œβ”€β”€ πŸ“„ README.md
β”‚   β”œβ”€β”€ 01_what_is_finetuning.md
β”‚   β”œβ”€β”€ 02_lora_explained.md
β”‚   β”œβ”€β”€ 03_qlora_explained.md
β”‚   β”œβ”€β”€ 04_data_preparation.md
β”‚   β”œβ”€β”€ 05_full_finetune.md
β”‚   └── πŸ““ notebooks/lora_finetune.ipynb
β”œβ”€β”€ πŸ“š explanations and examples WIP/ ← Standalone explainers (28 topics)
└── πŸ“„ CONTRIBUTING.md

"Any sufficiently explained technology is indistinguishable from magic. Until you build it yourself."

⭐ Star this repo if you found it useful | πŸ› Issues & PRs welcome | πŸ“– Happy learning!

── more in #large-language-models 4 stories Β· sorted by recency
── more on @chatgpt 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/how-to-train-your-gp…] indexed:0 read:10min 2026-08-27 Β· β€”