This is a reproducible package of llm.c's GPT-2 (124M) training by @karpathy (karpathy/llm.c#481). With SkyPilot, you can run GPT-2 (124M) training on any cloud. SkyPilot looks for the cheapest resources available on the clouds enabled for a user, launches and manages the whole data processing and training pipeline, leading to a close to ~$20 target cost as @karpathy mentioned in the discussion.
- Install SkyPilot:
pip install "skypilot-nightly[aws,gcp,azure,kubernetes,lambda,fluidstack]" # Choose the clouds you want to enable
- Enable clouds for SkyPilot:
sky check
Please check the instructions for enabling clouds at SkyPilot doc.
- Download the YAML for starting the training:
wget https://raw.githubusercontent.com/skypilot-org/skypilot/blob/master/llm/gpt-2/gpt2.yaml
Run the following command to start GPT-2 (124M) training on a GPU VM with 8 A100 GPUs (replace your-bucket-name
with your bucket name):
sky launch -c gpt2 gpt2.yaml
Or, you can train the model with a single A100, by adding --gpus A100
:
sky launch -c gpt2 gpt2.yaml --gpus A100
It is also possible to speed up the training of the model on 8 H100 (2.3x more tok/s than 8x A100s):
sky launch -c gpt2 gpt2.yaml --gpus H100:8
After the training is finished, you can download the logs and visualizations with the following command:
scp -r gpt2:~/llm.c/log124M .
We can visualize the training progress with the notebook provided in llm.c. (Note: we cut off the training after 10K steps, which already achieve similar validation loss as OpenAI GPT-2 checkpoint.)
Yes! We are able to reproduce the training of GPT-2 (124M) on any cloud with SkyPilot.
The data processing for GPT-2 training is CPU-bound, while the training is GPU-bound. Having the data processing on a GPU VM is not cost-effective. With SkyPilot, you can easily separate the data processing and training into two stages and execute them sequantially manually, or let SkyPilot manage the dependencies between the two stages.
With this data processing can be run on cheaper CPU VMs (e.g., ~$0.4/hour), and run the training on more expensive GPU VMs (e.g., ~$1.3-$3.6/hour for a single A100 GPU, or $10.3-$32.8/hour for 8 A100 GPUs).
We can run the data processing on a CPU VM and store the processed data in a cloud bucket. Then, we can run the training on a GPU VM with the processed data.
wget https://raw.githubusercontent.com//skypilot-org/skypilot/blob/master/llm/gpt-2/gpt2-data.yaml
wget https://raw.githubusercontent.com/skypilot-org/skypilot/blob/master/llm/gpt-2/gpt2-train.yaml
Run the following command to process the training data on a CPU VM and store it in a cloud bucket for future use (replace your-bucket-name
with your bucket name):
sky launch -c gpt2-data gpt2-data.yaml --env BUCKET_NAME=your-bucket-name
After the data is processed, you can then train the model on a GPU VM with 8 A100 GPUs (replace your-bucket-name
with your bucket name):
sky launch -c gpt2-train --detach-setup gpt2-train.yaml --env BUCKET_NAME=your-bucket-name
Or, you can train the model with a single A100, by adding --gpus A100
:
sky launch -c gpt2-train --detach-setup gpt2-train.yaml --gpus A100 --env BUCKET_NAME=your-bucket-name
We can also combine the two steps into a single SkyPilot job, and let SkyPilot to handle the dependencies between the two steps. Here is an example of how to do this (replace your-bucket-name
with your bucket name):
sky jobs launch -n gpt2 gpt2-pipeline.yaml --env BUCKET_NAME=your-bucket-name
Note: the pipeline yaml can be retrieved with the following command:
cat gpt2-data.yaml > gpt2-pipeline.yaml; echo "---" >> gpt2-pipeline.yaml; cat gpt2-train.yaml >> gpt2-pipeline.yaml
SkyPilot will first download and process the dataset on a CPU VM and store the processed data in a GCS bucket. Then, it will launch a GPT-2 training job on a GPU VM. The training job will train GPT-2 (124M) on the processed data.