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
58 lines
1.7 KiB
Bash
58 lines
1.7 KiB
Bash
#!/bin/bash
|
|
|
|
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 \
|
|
--task chat \
|
|
--hf-chat-template \
|
|
--add-eos-token '<|im_end|>' \
|
|
--top-k 5 \
|
|
--top-p 0.85 \
|
|
--temperature 0.3 \
|
|
--num-layers 40 \
|
|
--hidden-size 5120 \
|
|
--ffn-hidden-size 13696 \
|
|
--seq-length 1024 \
|
|
--max-new-tokens 256 \
|
|
--micro-batch-size 1 \
|
|
--global-batch-size 16 \
|
|
--num-attention-heads 40 \
|
|
--max-position-embeddings 2048 \
|
|
--position-embedding-type alibi \
|
|
--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 \
|
|
--use-kv-cache \
|
|
--use-flash-attn \
|
|
| tee logs/chat_baichuan_13b.log
|
|
|