Home

Awesome

Distributed Training Guide

Ever wondered how to train a large neural network across a giant cluster? Look no further!

This is a comprehensive guide on best practices for distributed training, diagnosing errors, and fully utilizing all resources available. It is organized into sequential chapters, each with a README.md and a train_llm.py script in them. The readme will discuss both the high level concepts of distributed training, and the code changes introduced in that chapter.

The guide is written entirely in very minimal standard pytorch, using transformers and datasets for models and data, respectively. No other library is used for distributed code - the distributed stuff is entirely in pytorch.

  1. Chapter 1 - A standard Causal LLM training script that runs on a single GPU.
  2. Chapter 2 - Upgrades the training script to support multiple GPUs and to use DDP.
  3. Chapter 3 - Covers how to launch training jobs across clusters with multiple nodes.
  4. Chapter 4 - Upgrades the training script to use FSDP instead of DDP for more optimal memory usage.
  5. Chapter 5 - Upgrades the training script to train Llama-405b.
  6. Alternative Frameworks - Covers different frameworks that all work with pytorch under the hood.
  7. Diagnosing Errors - Best practices and how tos for quickly diagnosing errors in your cluster.
  8. Related Topics - Topics that you should be aware of when distributed training.

Questions this guide answers:

Best practices for logging stdout/stderr and wandb are also included, as logging is vitally important in diagnosing/debugging training runs on a cluster.

Each of the training scripts is aimed at training a causal language model (i.e. gpt/llama).

Set up

Clone this repo

git clone https://github.com/LambdaLabsML/distributed-training-guide.git

Virtual Environment

cd distributed-training-guide
python3 -m venv venv
source venv/bin/activate
python -m pip install -U pip
pip install -U setuptools wheel
pip install -r requirements.txt

wandb

This tutorial uses wandb as an experiment tracker.

wandb login
<p align="center"> šŸ¦„ Other exciting ML projects at Lambda: <a href="https://news.lambdalabs.com/news/today">ML Times</a>, <a href="https://lambdalabsml.github.io/Open-Sora/introduction/">Text2Video</a>, <a href="https://lambdalabs.com/gpu-benchmarks">GPU Benchmark</a>. </p>