Files
ColossalAI/examples/language/gpt/README.md
Jiarui Fang 60abd86d6a [example] enhance GPT demo (#1959)
* [example] enhence GPT demo

* Update README.md

Co-authored-by: binmakeswell <binmakeswell@gmail.com>
2022-11-16 11:36:27 +08:00

18 lines
516 B
Markdown

## Overview
This example shows how to use Colossal-AI to run huggingface GPT training in distributed manners.
## GPT
We use the GPT2 model from huggingface transformers. The input data is randonly generated.
## Our Modifications
The `train_gpt_demo.py` provides three distributed plans, i.e. Colossal-AI, PyTorch DDP and ZeRO.
The Colossal-AI leverages Tensor Parallel and Gemini.
## Quick Start
You can launch training by using the following bash script.
```bash
pip install -r requirements.txt
bash run.sh
```