LLaMA-Factory-310P3/batch_run.sh

26 lines
852 B
Bash

#!/bin/bash
# bash batch_run.sh 3
repeat_cnt=$1
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
done