README.md 493 Bytes
Newer Older
BoxiangW's avatar
BoxiangW committed
1
2
# Handson 2: Sequence Parallelism with BERT

3
4
5

## Prepare Dataset

BoxiangW's avatar
BoxiangW committed
6
We use CIFAR10 dataset in this example. The dataset will be downloaded to `../data` by default. 
7
8
9
10
11
12
13
14
15
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

BoxiangW's avatar
BoxiangW committed
16
17
Current configuration setting on `config.py` is TP=2, PP=2.

18
```bash
BoxiangW's avatar
BoxiangW committed
19
colossalai run --nproc_per_node 4 train.py --config config.py
20
```