@Xx15573208: I've read many articles about Transformers and understand the theory, but when I actually sit down to write code, I have no idea where to start. LLMs-from-scratch is specifically designed to solve this problem: it accompanies the book "Build a Large Language Model" and guides you through implementing GPT from scratch using PyTorch…
Summary
LLMs-from-scratch is a GitHub repository that accompanies the book "Build a Large Language Model," providing complete code to implement GPT from scratch with PyTorch, covering the full pipeline including pretraining, fine-tuning, and RLHF. It has gained 93K+ stars and is ideal for developers who want to deeply understand the principles behind large language models.
View Cached Full Text
Cached at: 05/12/26, 04:56 PM
After reading many Transformer articles, you can understand the theory, but when it comes to actually sitting down and writing code, you feel completely lost. LLMs-from-scratch is designed to solve exactly this problem: paired with the book Build a Large Language Model (From Scratch), it guides you through implementing a complete GPT model line by line using PyTorch. With 93K+ stars, it is one of the most popular LLM learning projects on GitHub. GitHub: https://github.com/rasbt/LLMs-from-scratch
7 chapters of progressive content:
- Starting from attention mechanisms, building a complete GPT architecture from scratch
- Full pipeline code for pretraining, supervised fine‑tuning, and RLHF
- Advanced techniques like BPE tokenizer, KV cache, MoE, and DPO implemented as bonus material
- Includes implementations of modern architectures such as Llama 3.2, Qwen3, and Gemma
- Code runs on both CPU and GPU, works on a regular laptop
- Comes with a 17‑hour video course and a 170‑page exercise book – ideal for developers who want to truly understand large models at the code level, not just use APIs.
GitHub: https://github.com/rasbt/LLMs-from-scratch
7 chapters of progressive content:
- From attention mechanisms to a complete GPT implementation
- Supervised fine‑tuning, RLHF, and preference optimization (DPO)
- Advanced appendices covering BPE tokenizer, KV cache, MoE, and more
- Already includes implementations of Llama 3.2, Qwen3, and Gemma
- Code runs on both CPU and GPU, works on a regular laptop
- Comes with a 17‑hour video course and a 170‑page exercise PDF – suitable for developers who want to truly understand large models from the ground up.
rasbt/LLMs-from-scratch
Source: https://github.com/rasbt/LLMs-from-scratch
Build a Large Language Model (From Scratch)
This repository contains the code for developing, pretraining, and finetuning a GPT-like LLM and is the official code repository for the book Build a Large Language Model (From Scratch).
In Build a Large Language Model (From Scratch) (http://mng.bz/orYv), you’ll learn and understand how large language models (LLMs) work from the inside out by coding them from the ground up, step by step. In this book, I’ll guide you through creating your own LLM, explaining each stage with clear text, diagrams, and examples.
The method described in this book for training and developing your own small-but-functional model for educational purposes mirrors the approach used in creating large-scale foundational models such as those behind ChatGPT.
In addition, this book includes code for loading the weights of larger pretrained models for finetuning.
- Link to the official source code repository (https://github.com/rasbt/LLMs-from-scratch)
- Link to the book at Manning (the publisher’s website) (http://mng.bz/orYv)
- Link to the book page on Amazon.com (https://www.amazon.com/gp/product/1633437167)
- ISBN 9781633437166
To download a copy of this repository, click on the Download ZIP button or execute the following command in your terminal:
git clone --depth 1 https://github.com/rasbt/LLMs-from-scratch.git
(If you downloaded the code bundle from the Manning website, please consider visiting the official code repository on GitHub at https://github.com/rasbt/LLMs-from-scratch for the latest updates.)
Table of Contents
Please note that this README.md file is a Markdown (.md) file. If you have downloaded this code bundle from the Manning website and are viewing it on your local computer, I recommend using a Markdown editor or previewer for proper viewing. If you haven’t installed a Markdown editor yet, Ghostwriter is a good free option. You can alternatively view this and other files on GitHub at https://github.com/rasbt/LLMs-from-scratch in your browser, which renders Markdown automatically.
Tip:
If you’re seeking guidance on installing Python and Python packages and setting up your code environment, I suggest reading the README.md file located in the setup directory.
| Chapter Title | Main Code (for Quick Access) | All Code + Supplementary |
|---|---|---|
| Setup recommendations – How to best read this book (https://sebastianraschka.com/blog/2025/reading-books.html) | - | - |
| Ch 1: Understanding Large Language Models | No code | - |
| Ch 2: Working with Text Data | - ch02.ipynb - dataloader.ipynb (summary) - exercise-solutions.ipynb | ./ch02 |
| Ch 3: Coding Attention Mechanisms | - ch03.ipynb - multihead-attention.ipynb (summary) - exercise-solutions.ipynb | ./ch03 |
| Ch 4: Implementing a GPT Model from Scratch | - ch04.ipynb - gpt.py (summary) - exercise-solutions.ipynb | ./ch04 |
| Ch 5: Pretraining on Unlabeled Data | - ch05.ipynb - gpt_train.py (summary) - gpt_generate.py (summary) - exercise-solutions.ipynb | ./ch05 |
| Ch 6: Finetuning for Text Classification | - ch06.ipynb - gpt_class_finetune.py - exercise-solutions.ipynb | ./ch06 |
| Ch 7: Finetuning to Follow Instructions | - ch07.ipynb - gpt_instruction_finetuning.py (summary) - ollama_evaluate.py (summary) - exercise-solutions.ipynb | ./ch07 |
| Appendix A: Introduction to PyTorch | - code-part1.ipynb - code-part2.ipynb - DDP-script.py - exercise-solutions.ipynb | ./appendix-A |
| Appendix B: References and Further Reading | No code | ./appendix-B |
| Appendix C: Exercise Solutions | - list of exercise solutions | ./appendix-C |
| Appendix D: Adding Bells and Whistles to the Training Loop | - appendix-D.ipynb | ./appendix-D |
| Appendix E: Parameter-efficient Finetuning with LoRA | - appendix-E.ipynb | ./appendix-E |
The mental model below summarizes the contents covered in this book.
Prerequisites
The most important prerequisite is a strong foundation in Python programming. With this knowledge, you will be well prepared to explore the fascinating world of LLMs and understand the concepts and code examples presented in this book.
If you have some experience with deep neural networks, you may find certain concepts more familiar, as LLMs are built upon these architectures.
This book uses PyTorch to implement the code from scratch without using any external LLM libraries. While proficiency in PyTorch is not a prerequisite, familiarity with PyTorch basics is certainly useful. If you are new to PyTorch, Appendix A provides a concise introduction to PyTorch. Alternatively, you may find my book, PyTorch in One Hour: From Tensors to Training Neural Networks on Multiple GPUs, helpful for learning about the essentials.
Hardware Requirements
The code in the main chapters of this book is designed to run on conventional laptops within a reasonable timeframe and does not require specialized hardware. This approach ensures that a wide audience can engage with the material. Additionally, the code automatically utilizes GPUs if they are available. (Please see the setup doc for additional recommendations.)
Video Course
A 17-hour and 15-minute companion video course (https://www.manning.com/livevideo/master-and-build-large-language-models) where I code through each chapter of the book. The course is organized into chapters and sections that mirror the book’s structure so that it can be used as a standalone alternative to the book or complementary code-along resource.
Companion Book / Sequel
Build A Reasoning Model (From Scratch) (https://mng.bz/lZ5B), while a standalone book, can be considered as a sequel to Build A Large Language Model (From Scratch). It starts with a pretrained model and implements different reasoning approaches, including inference-time scaling, reinforcement learning, and distillation, to improve the model’s reasoning capabilities. Similar to Build A Large Language Model (From Scratch), Build A Reasoning Model (From Scratch) (https://mng.bz/lZ5B) takes a hands-on approach implementing these methods from scratch.
- Amazon link (TBD)
- Manning link (https://mng.bz/lZ5B)
- GitHub repository (https://github.com/rasbt/reasoning-from-scratch)
Exercises
Each chapter of the book includes several exercises. The solutions are summarized in Appendix C, and the corresponding code notebooks are available in the main chapter folders of this repository (for example, ./ch02/01_main-chapter-code/exercise-solutions.ipynb.
In addition to the code exercises, you can download a free 170-page PDF titled Test Yourself On Build a Large Language Model (From Scratch) from the Manning website. It contains approximately 30 quiz questions and solutions per chapter to help you test your understanding.
Bonus Material
Several folders contain optional materials as a bonus for interested readers:
- Setup
- Chapter 2: Working With Text Data
- Chapter 3: Coding Attention Mechanisms
- Chapter 4: Implementing a GPT Model From Scratch
- Chapter 5: Pretraining on Unlabeled Data
- Alternative Weight Loading Methods
- Pretraining GPT on the Project Gutenberg Dataset
- Adding Bells and Whistles to the Training Loop
- Optimizing Hyperparameters for Pretraining
- Building a User Interface to Interact With the Pretrained LLM
- Converting GPT to Llama
- Memory-efficient Model Weight Loading
- Extending the Tiktoken BPE Tokenizer with New Tokens
- PyTorch Performance Tips for Faster LLM Training
- LLM Architectures
- Chapter 5 with other LLMs as Drop-In Replacement (e.g., Llama 3, Qwen 3)
- Chapter 6: Finetuning for classification
- Chapter 7: Finetuning to follow instructions
- Dataset Utilities for Finding Near Duplicates and Creating Passive Voice Entries
- Evaluating Instruction Responses Using the OpenAI API and Ollama
- Generating a Dataset for Instruction Finetuning
- Improving a Dataset for Instruction Finetuning
- Generating a Preference Dataset With Llama 3.1 70B and Ollama
- Direct Preference Optimization (DPO) for LLM Alignment
- Building a User Interface to Interact With the Instruction-Finetuned GPT Model
More bonus material from the Reasoning From Scratch repository:
- Qwen3 (From Scratch) Basics
- Qwen3 Source Code Walkthrough (https://github.com/rasbt/reasoning-from-scratch/blob/main/chC/01_main-chapter-code/chC_main.ipynb)
- Optimized Qwen3 (https://github.com/rasbt/reasoning-from-scratch/tree/main/ch02/03_optimized-LLM)
- Evaluation
- Verifier-Based Evaluation (MATH-500) (https://github.com/rasbt/reasoning-from-scratch/tree/main/ch03)
- Multiple-Choice Evaluation (MMLU) (https://github.com/rasbt/reasoning-from-scratch/blob/main/chF/02_mmlu)
- LLM Leaderboard Evaluation (https://github.com/rasbt/reasoning-from-scratch/blob/main/chF/03_leaderboards)
- LLM-as-a-Judge Evaluation (https://github.com/rasbt/reasoning-from-scratch/blob/main/chF/04_llm-judge)
- Inference Scaling
- Self-Consistency (https://github.com/rasbt/reasoning-from-scratch/blob/main/ch04/01_main-chapter-code/ch04_main.ipynb)
- Self-Refinement (https://github.com/rasbt/reasoning-from-scratch/blob/main/ch05/01_main-chapter-code/ch05_main.ipynb)
- Reinforcement Learning (RL)
- RLVR with GRPO From Scratch (https://github.com/rasbt/reasoning-from-scratch/blob/main/ch06/01_main-chapter-code/ch06_main.ipynb)
Questions, Feedback, and Contributing to This Repository
I welcome all sorts of feedback, best shared via the Manning Forum or GitHub Discussions. Likewise, if you have any questions or just want to bounce ideas off others, please don’t hesitate to post these in the forum as well.
Please note that since this repository contains the code corresponding to a print book, I currently cannot accept contributions that would extend the contents of the main chapter code, as it would introduce deviations from the physical book. Keeping it consistent helps ensure a smooth experience for everyone.
Citation
If you find this book or code useful for your research, please consider citing it. Chicago-style citation
Similar Articles
@NFTCPS: You keep talking about AI, but can't even explain what a Transformer is? There's a repo that goes all out — builds a GPT from scratch without using any high-level libraries. It lays out exactly how Attention, Multi-Head, Feed-Forward, Embedding, Residual connections, and Layer Norm are pieced together. And it's not just the model; the entire pipeline is covered…
A GitHub open-source project that implements the complete GPT training pipeline from scratch, including data preprocessing, pretraining, SFT, and RLHF post-training, all based on native PyTorch. Ideal for developers who want to deeply understand the Transformer architecture.
@GitHub_Daily: Want to understand the underlying principles of large language models? Most resources only cover theory or provide source code, leaving you still confused. Stumbled upon this open-source tutorial, EveryonesLLM, which guides us step by step to build a complete large language model from scratch on Google Colab, writing code throughout. The whole tutorial is divided into...
EveryonesLLM is an open-source tutorial that provides 29 chapters of Colab notebooks. It teaches users step by step to build a complete large language model from scratch on Google Colab, including pre-training and instruction fine-tuning, and supports Chinese.
rasbt/LLMs-from-scratch
The repository provides open-source code to build, pretrain, and fine-tune a GPT-like large language model from scratch, serving as the official code companion to Sebastian Raschka's book of the same name.
Hi Reddit, I posted my Build Your Own LLM workshop to Youtube (GPT2 & Qwen3.6 style)
Justin Angel released a complete YouTube workshop teaching you how to build your own large language model from scratch (based on GPT-2 and Qwen3.6 style), covering Transformer architecture, training pipeline, and providing Excel manual operations and Python/PyTorch code practice, with no prerequisites in math or ML.
@akshay_pachaar: Train your own LLM from scratch. This repo builds a GPT-style transformer from the ground up, without using any high-le…
A repository that builds a GPT-style transformer from scratch without high-level libraries, covering everything from data preprocessing to generation, and includes guides for SFT and RLHF.