File size: 694 Bytes
d4a7e84 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | MODEL_NAME="Qwen/Qwen2.5-7B-Instruct"
MAX_COMPLETION_TOKENS=2048
INPUT_PATH="/home/tianqiu/tts_schedule/batch_infer/results/mathhard_train/Qwen_Qwen2.5-7B-Instruct/Majority/parallel_merged_output.jsonl"
DATASET="mathhard_train"
# OUTPUT_DIR="/home/tianqiu/tts_schedule/batch_infer/results/mathhard/Qwen_Qwen2.5-7B-Instruct/Sequence/sequence_data_test"
METHOD="Sequence_new_prompt"
export CUDA_VISIBLE_DEVICES=0,1,2,3
python /home/tianqiu/tts_schedule/batch_infer/src/sequence_only.py \
--input_path $INPUT_PATH \
--budget 7 \
--model_name $MODEL_NAME \
--max_completion_tokens $MAX_COMPLETION_TOKENS \
--tensor_parallel_size 4 \
--method $METHOD \
--dataset $DATASET |