infer_instruct.sh 597 Bytes
Newer Older
luopl's avatar
luopl committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

# RealWorldQA Inference Script (Instruct Model)
# This script runs inference on the RealWorldQA dataset using vLLM

python run_realworldqa.py infer \
    --model-path /path/to/Qwen3-VL-Instruct \
    --dataset RealWorldQA \
    --data-dir /path/to/data \
    --output-file results/RealWorldQA_results.jsonl \
    --tensor-parallel-size 1 \
    --gpu-memory-utilization 0.9 \
    --max-model-len 128000 \
    --max-images-per-prompt 10 \
    --max-new-tokens 32768 \
    --temperature 0.7 \
    --top-p 0.8 \
    --top-k 20 \
    --repetition-penalty 1.0 \
    --presence-penalty 1.5