LLaMA-Factory-310P3/batch_run.sh

47 lines
1.7 KiB
Bash

#!/bin/bash
# bash batch_run.sh 3
repeat_cnt=$1
source /usr/local/Ascend/ascend-toolkit/set_env.sh
for ((i=0; i<repeat_cnt; i++)); do
bash run_once.sh lora_sft Qwen-7B 8 500
bash run_once.sh lora_sft Qwen-7B 8 1000
bash run_once.sh lora_sft Qwen-7B 1 500
bash run_once.sh lora_sft Qwen-7B 1 1000
bash run_once.sh lora_sft Baichuan2-7B 8 500
bash run_once.sh lora_sft Baichuan2-7B 8 1000
bash run_once.sh lora_sft Baichuan2-7B 1 500
bash run_once.sh lora_sft Baichuan2-7B 1 1000
bash run_once.sh inference Qwen-7B 8 500
bash run_once.sh inference Qwen-7B 8 1000
bash run_once.sh inference Qwen-7B 1 500
bash run_once.sh inference Qwen-7B 1 1000
bash run_once.sh inference Baichuan2-7B 8 500
bash run_once.sh inference Baichuan2-7B 8 1000
bash run_once.sh inference Baichuan2-7B 1 500
bash run_once.sh inference Baichuan2-7B 1 1000
# bash run_once.sh lora_sft chatglm2-6B 8 500
# bash run_once.sh lora_sft chatglm2-6B 8 1000
# bash run_once.sh lora_sft chatglm2-6B 1 500
# bash run_once.sh lora_sft chatglm2-6B 1 1000
# bash run_once.sh lora_sft llama-2-7b-ms 8 500
# bash run_once.sh lora_sft llama-2-7b-ms 8 1000
# bash run_once.sh lora_sft llama-2-7b-ms 1 500
# bash run_once.sh lora_sft llama-2-7b-ms 1 1000
# bash run_once.sh inference chatglm2-6B 8 500
# bash run_once.sh inference chatglm2-6B 8 1000
# bash run_once.sh inference chatglm2-6B 1 500
# bash run_once.sh inference chatglm2-6B 1 1000
# bash run_once.sh inference llama-2-7b-ms 8 500
# bash run_once.sh inference llama-2-7b-ms 8 1000
# bash run_once.sh inference llama-2-7b-ms 1 500
# bash run_once.sh inference llama-2-7b-ms 1 1000
done