forked from open-compass/VLMEvalKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqwen3vl_2b_4b_video_commands.txt
More file actions
42 lines (30 loc) · 1.87 KB
/
qwen3vl_2b_4b_video_commands.txt
File metadata and controls
42 lines (30 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Qwen3-VL 2B / 4B (base + quantized) on TrafficQA, MotionBench, MVBench at 1 fps
# GPU layout: first command on GPUs 0,1; second command on GPUs 2,3.
# Run each PAIR together (e.g., in background or separate shells) so 2 models run at the same time.
############################
# TrafficQA_test_1fps
############################
# Base models
CUDA_VISIBLE_DEVICES=0,1 python run.py --data TrafficQA_test_1fps --model Qwen3-VL-2B-Instruct --verbose
CUDA_VISIBLE_DEVICES=2,3 python run.py --data TrafficQA_test_1fps --model Qwen3-VL-4B-Instruct --verbose
# Quantized AWQ W8A8 models
CUDA_VISIBLE_DEVICES=0,1 python run.py --data TrafficQA_test_1fps --model Qwen3-VL-2B-Instruct-AWQ-W8A8 --verbose
CUDA_VISIBLE_DEVICES=2,3 python run.py --data TrafficQA_test_1fps --model Qwen3-VL-4B-Instruct-AWQ-W8A8 --verbose
############################
# MotionBench_1fps
############################
# Base models
CUDA_VISIBLE_DEVICES=0,1 python run.py --data MotionBench_1fps --model Qwen3-VL-2B-Instruct --verbose
CUDA_VISIBLE_DEVICES=2,3 python run.py --data MotionBench_1fps --model Qwen3-VL-4B-Instruct --verbose
# Quantized AWQ W8A8 models
CUDA_VISIBLE_DEVICES=0,1 python run.py --data MotionBench_1fps --model Qwen3-VL-2B-Instruct-AWQ-W8A8 --verbose
CUDA_VISIBLE_DEVICES=2,3 python run.py --data MotionBench_1fps --model Qwen3-VL-4B-Instruct-AWQ-W8A8 --verbose
############################
# MVBench_MP4_1fps
############################
# Base models
CUDA_VISIBLE_DEVICES=0,1 python run.py --data MVBench_MP4_1fps --model Qwen3-VL-2B-Instruct --verbose
CUDA_VISIBLE_DEVICES=2,3 python run.py --data MVBench_MP4_1fps --model Qwen3-VL-4B-Instruct --verbose
# Quantized AWQ W8A8 models
CUDA_VISIBLE_DEVICES=0,1 python run.py --data MVBench_MP4_1fps --model Qwen3-VL-2B-Instruct-AWQ-W8A8 --verbose
CUDA_VISIBLE_DEVICES=2,3 python run.py --data MVBench_MP4_1fps --model Qwen3-VL-4B-Instruct-AWQ-W8A8 --verbose