1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # Copyright (c) 2020 NVIDIA Corporation. All rights reserved.
- GPUS_PER_NODE=2
- # Change for multinode config
- MASTER_ADDR=localhost
- MASTER_PORT=6000
- NNODES=1
- NODE_RANK=0
- WORLD_SIZE=2
- TENSOR_MP_SIZE=1
- PIPELINE_MP_SIZE=1
- CHECKPOINT_PATH='../sv_ckpt/' ## modify this path if you customize it
- DATA_PATH='../dataset/EN/NVblog_text_document' ## modify this path if you customize it
- VOCAB_FILE='../dataset/EN/50k/gpt2-vocab.json' ## modify this path if you customize it
- MERGE_FILE='../dataset/EN/50k/gpt2-merges.txt' ## modify this path if you customize it
- 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 \
- ./Megatron-LM/pretrain_gpt.py \
- --tensor-model-parallel-size $TENSOR_MP_SIZE \
- --pipeline-model-parallel-size $PIPELINE_MP_SIZE \
- --num-layers 24 \
- --hidden-size 1024 \
- --num-attention-heads 16 \
- --seq-length 512 \
- --max-position-embeddings 512 \
- --lr 0.00015 \
- --micro-batch-size 1 \
- --train-samples 100 \
- --save $CHECKPOINT_PATH \
- --load $CHECKPOINT_PATH \
- --data-path $DATA_PATH \
- --vocab-file $VOCAB_FILE \
- --merge-file $MERGE_FILE \
- --data-impl mmap \
- --split 949,50,1 \
- --distributed-backend nccl \
- --lr 0.00015 \
- --lr-decay-style cosine \
- --min-lr 1.0e-5 \
- --weight-decay 1e-5 \
- --clip-grad 1.0 \
- --lr-warmup-fraction .01 \
- --checkpoint-activations \
- --log-interval 10 \
- --save-interval 100 \
- --eval-interval 100 \
- --eval-iters 10 \
- --fp16
|