README.md 584 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Handson 1: Multi-dimensional Parallelism with Colossal-AI


## Install Colossal-AI and other dependencies

```bash
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.

```bash
export DATA=/path/to/data
```


## Run on 2*2 device mesh

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

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