ColossalAI/examples/tutorial/hybrid_parallel
BoxiangW ca6e75bc28
[tutorial] edited hands-on practices (#1899)
* Add handson to ColossalAI.

* Change names of handsons and edit sequence parallel example.

* Edit wrong folder name

* resolve conflict

* delete readme
2022-11-11 17:08:17 +08:00
..
README.md [tutorial] edited hands-on practices (#1899) 2022-11-11 17:08:17 +08:00
config.py [tutorial] edited hands-on practices (#1899) 2022-11-11 17:08:17 +08:00
install.sh [tutorial] edited hands-on practices (#1899) 2022-11-11 17:08:17 +08:00
train.py [tutorial] edited hands-on practices (#1899) 2022-11-11 17:08:17 +08:00

README.md

Handson 1: Multi-dimensional Parallelism with Colossal-AI

Install Colossal-AI and other dependencies

sh install.sh

Prepare Dataset

We use CIFAR10 dataset in this example. The dataset will be downloaded to ../data by default. If you wish to use customized directory for the dataset. You can set the environment variable DATA via the following command.

export DATA=/path/to/data

Run on 2*2 device mesh

Current configuration setting on config.py is TP=2, PP=2.

colossalai run --nproc_per_node 4 train.py --config config.py