pretrain_gpt_distributed.sh 1.36 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/bash

# Runs the "345M" parameter model

GPUS_PER_NODE=8
# Change for multinode config
MASTER_ADDR=localhost
MASTER_PORT=6000
NNODES=1
NODE_RANK=0
WORLD_SIZE=$(($GPUS_PER_NODE*$NNODES))

Mohammad's avatar
Mohammad committed
13
14
15
DATA_PATH=<Specify path and file prefix>_text_document
CHECKPOINT_PATH=<Specify path>

16
17
18
DISTRIBUTED_ARGS="--nproc_per_node $GPUS_PER_NODE --nnodes $NNODES --node_rank $NODE_RANK --master_addr $MASTER_ADDR --master_port $MASTER_PORT"

python -m torch.distributed.launch $DISTRIBUTED_ARGS \
19
       pretrain_gpt.py \
20
21
22
       --num-layers 24 \
       --hidden-size 1024 \
       --num-attention-heads 16 \
23
24
       --micro-batch-size 8 \
       --global-batch-size 64 \
25
26
       --seq-length 1024 \
       --max-position-embeddings 1024 \
Mohammad's avatar
Mohammad committed
27
28
29
30
31
32
33
34
       --train-iters 500000 \
       --lr-decay-iters 320000 \
       --save $CHECKPOINT_PATH \
       --load $CHECKPOINT_PATH \
       --data-path $DATA_PATH \
       --vocab-file gpt2-vocab.json \
       --merge-file gpt2-merges.txt \
       --data-impl mmap \
35
36
37
38
       --split 949,50,1 \
       --distributed-backend nccl \
       --lr 0.00015 \
       --lr-decay-style cosine \
Mohammad's avatar
latest  
Mohammad committed
39
       --min-lr 1.0e-5 \
40
41
       --weight-decay 1e-2 \
       --clip-grad 1.0 \
42
       --lr-warmup-fraction .01 \
43
       --activations-checkpoint-method uniform \
Mohammad's avatar
Mohammad committed
44
45
46
47
       --log-interval 100 \
       --save-interval 10000 \
       --eval-interval 1000 \
       --eval-iters 10 \
48
       --fp16