pretrain_bert_distributed.sh 1.23 KB
Newer Older
Raul Puri's avatar
Raul Puri committed
1
2
#!/bin/bash

3
GPUS_PER_NODE=8
Raul Puri's avatar
Raul Puri committed
4
5
6
7
8
# Change for multinode config
MASTER_ADDR=localhost
MASTER_PORT=6000
NNODES=1
NODE_RANK=0
9
WORLD_SIZE=$(($GPUS_PER_NODE*$NNODES))
Raul Puri's avatar
Raul Puri committed
10

Mohammad's avatar
Mohammad committed
11
12
13
DATA_PATH=<Specify path and file prefix>_text_sentence
CHECKPOINT_PATH=<Specify path>

14
DISTRIBUTED_ARGS="--nproc_per_node $GPUS_PER_NODE --nnodes $NNODES --node_rank $NODE_RANK --master_addr $MASTER_ADDR --master_port $MASTER_PORT"
Raul Puri's avatar
Raul Puri committed
15
16

python -m torch.distributed.launch $DISTRIBUTED_ARGS \
17
       pretrain_bert.py \
18
       --tensor-model-parallel-size 1 \
19
20
21
22
23
24
25
       --num-layers 24 \
       --hidden-size 1024 \
       --num-attention-heads 16 \
       --batch-size 4 \
       --seq-length 512 \
       --max-position-embeddings 512 \
       --train-iters 1000000 \
Mohammad's avatar
Mohammad committed
26
27
28
29
30
       --save $CHECKPOINT_PATH \
       --load $CHECKPOINT_PATH \
       --data-path $DATA_PATH \
       --vocab-file bert-vocab.txt \
       --data-impl mmap \
31
32
33
34
       --split 949,50,1 \
       --distributed-backend nccl \
       --lr 0.0001 \
       --lr-decay-style linear \
Mohammad's avatar
latest  
Mohammad committed
35
       --min-lr 1.0e-5 \
36
37
38
39
       --lr-decay-iters 990000 \
       --weight-decay 1e-2 \
       --clip-grad 1.0 \
       --warmup .01 \
Mohammad's avatar
Mohammad committed
40
41
42
43
44
       --log-interval 100 \
       --save-interval 10000 \
       --eval-interval 1000 \
       --eval-iters 10 \
       --fp16