mirror of
https://gitee.com/ascend/ModelLink.git
synced 2024-11-29 18:38:39 +08:00
670f729060
Merge pull request !1760 from guoxinjie/arrange_readme
54 lines
1.7 KiB
Bash
54 lines
1.7 KiB
Bash
#!/bin/bash
|
|
|
|
# The number of parameters is not aligned
|
|
export LD_LIBRARY_PATH=/usr/local/lib:/usr/local/lib:/root/miniconda3/lib:$LD_LIBRARY_PATH
|
|
export HCCL_CONNECT_TIMEOUT=1200
|
|
export COMBINED_ENABLE=1
|
|
export CUDA_DEVICE_MAX_CONNECTIONS=1
|
|
|
|
# please fill these path configurations
|
|
CHECKPOINT="your model directory path"
|
|
TOKENIZER_PATH="your tokenizer directory path"
|
|
|
|
# Change for multinode config
|
|
MASTER_ADDR=localhost
|
|
MASTER_PORT=6001
|
|
NNODES=1
|
|
NODE_RANK=0
|
|
NPUS_PER_NODE=8
|
|
WORLD_SIZE=$(($NPUS_PER_NODE*$NNODES))
|
|
|
|
DISTRIBUTED_ARGS="--nproc_per_node $NPUS_PER_NODE --nnodes $NNODES --node_rank $NODE_RANK --master_addr $MASTER_ADDR --master_port $MASTER_PORT"
|
|
|
|
python -m torch.distributed.launch $DISTRIBUTED_ARGS inference.py \
|
|
--tensor-model-parallel-size 8 \
|
|
--pipeline-model-parallel-size 1 \
|
|
--num-layers 32 \
|
|
--hidden-size 4096 \
|
|
--ffn-hidden-size 11008 \
|
|
--seq-length 1024 \
|
|
--max-new-tokens 256 \
|
|
--micro-batch-size 1 \
|
|
--global-batch-size 16 \
|
|
--num-attention-heads 32 \
|
|
--max-position-embeddings 2048 \
|
|
--position-embedding-type rope \
|
|
--swiglu \
|
|
--load $CHECKPOINT \
|
|
--tokenizer-type PretrainedFromHF \
|
|
--tokenizer-name-or-path $TOKENIZER_PATH \
|
|
--tokenizer-not-use-fast \
|
|
--fp16 \
|
|
--normalization RMSNorm \
|
|
--untie-embeddings-and-output-weights \
|
|
--disable-bias-linear \
|
|
--attention-softmax-in-fp32 \
|
|
--no-load-optim \
|
|
--no-load-rng \
|
|
--no-masked-softmax-fusion \
|
|
--no-gradient-accumulation-fusion \
|
|
--exit-on-missing-checkpoint \
|
|
--make-vocab-size-divisible-by 64 \
|
|
| tee logs/generate_baichuan_7b.log
|
|
|