-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
1017 lines (972 loc) · 28.3 KB
/
Copy pathconfig.yaml
File metadata and controls
1017 lines (972 loc) · 28.3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# OVO-S-Bench evaluation configuration.
#
# MODELS is organized by category → series → variants. The flattening logic in
# `utils.config_utils.resolve_all_models()` produces a `{model_name: config}`
# dict at runtime — e.g. `qwen3-vl-32b` is the `32b` variant under the
# `qwen3-vl` series.
#
# Conventions:
# • `model_id` is the HuggingFace repo id (auto-downloaded on first use).
# • `local_path` (when set) overrides `model_id` to point at a pre-downloaded
# checkpoint. We've stripped the original cluster-internal paths from this
# file — add yours back, or set $OVO_S_MODEL_ROOT to a directory under which
# each `model_id` directory lives, and the wrapper will resolve it.
# • `provider` selects the wrapper class. See models/__init__.py for API
# providers and models/vllm_models.py:_get_offline_registry for offline.
# Model configurations
# Organized by category with series-level grouping.
# Use utils.config_utils.resolve_all_models() to flatten into {model_name: config} dict.
MODELS:
api-model:
gpt-4o:
type: api
provider: openai
model_id: gpt-4o
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 1024
gemini-3.1-flash-lite-preview:
type: api
provider: gemini-native
model_id: gemini-3.1-flash-lite-preview
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 1024
temperature: 0.3
sampling_strategy: fixed
nframes: 128
gemini-3.1-pro-preview:
type: api
provider: gemini-native
model_id: gemini-3.1-pro-preview
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 4096
temperature: 0.0
sampling_strategy: fixed
nframes: 128
gpt-5.4:
type: api
provider: openai
model_id: gpt-5.4
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 4096
temperature: 0.0
sampling_strategy: fixed
nframes: 128
grok-4-1-fast-non-reasoning:
type: api
provider: openai
model_id: grok-4-1-fast-non-reasoning
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 16
temperature: 0.0
sampling_strategy: fixed
nframes: 128
grok-4-1-fast-reasoning:
type: api
provider: openai
model_id: grok-4-1-fast-reasoning
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 4096
temperature: 0.0
sampling_strategy: fixed
nframes: 128
qwen3.5-397b-a17b-api:
type: api
provider: openai
model_id: qwen3.5-397b-a17b
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 8192
temperature: 0.0
sampling_strategy: fixed
nframes: 128
extra_body:
enable_thinking: true
qwen3.5-397b-a17b-non-thinking-api:
type: api
provider: openai
model_id: qwen3.5-397b-a17b
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 64
temperature: 0.0
sampling_strategy: fixed
nframes: 128
extra_body:
enable_thinking: false
qwen3-vl-235b-a22b-instruct-api:
type: api
provider: openai
model_id: qwen3-vl-235b-a22b-instruct
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 64
temperature: 0.0
sampling_strategy: fixed
nframes: 128
qwen3-vl-235b-a22b-thinking-api:
type: api
provider: openai
model_id: qwen3-vl-235b-a22b-thinking
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 8192
temperature: 0.0
sampling_strategy: fixed
nframes: 128
open-source-general-mllm:
qwen3-vl:
defaults:
type: offline
provider: qwen
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
tensor_parallel_size: 2
gpu_memory_utilization: 0.85
max_images_per_prompt: 128
batch_size: 4
nframes: 128
variants:
2b:
model_id: Qwen/Qwen3-VL-2B-Instruct
tensor_parallel_size: 1
4b:
model_id: Qwen/Qwen3-VL-4B-Instruct
4b-thinking:
model_id: Qwen/Qwen3-VL-4B-Thinking
tensor_parallel_size: 1
enable_thinking: true
max_tokens: 8192
batch_size: 8
8b:
model_id: Qwen/Qwen3-VL-8B-Instruct
32b:
model_id: Qwen/Qwen3-VL-32B-Instruct
tensor_parallel_size: 4
32b-thinking:
model_id: Qwen/Qwen3-VL-32B-Thinking
tensor_parallel_size: 4
enable_thinking: true
max_tokens: 8192
30b-a3b:
model_id: Qwen/Qwen3-VL-30B-A3B-Instruct
tensor_parallel_size: 2
235b-a22b:
model_id: Qwen/Qwen3-VL-235B-A22B-Instruct
tensor_parallel_size: 8
qwen3.5:
defaults:
type: offline
provider: qwen3.5
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
gpu_memory_utilization: 0.85
max_images_per_prompt: 128
batch_size: 4
nframes: 128
enable_thinking: false
variants:
0.8b:
model_id: Qwen/Qwen3.5-0.8B
tensor_parallel_size: 1
2b:
model_id: Qwen/Qwen3.5-2B
tensor_parallel_size: 1
4b:
model_id: Qwen/Qwen3.5-4B
tensor_parallel_size: 2
9b:
model_id: Qwen/Qwen3.5-9B
tensor_parallel_size: 2
9b-thinking:
model_id: Qwen/Qwen3.5-9B
tensor_parallel_size: 2
enable_thinking: true
max_tokens: 32768
4b-thinking:
model_id: Qwen/Qwen3.5-4B
tensor_parallel_size: 2
enable_thinking: true
max_tokens: 32768
27b:
model_id: Qwen/Qwen3.5-27B
tensor_parallel_size: 4
27b-thinking:
model_id: Qwen/Qwen3.5-27B
tensor_parallel_size: 4
enable_thinking: true
max_tokens: 32768
35b-a3b:
model_id: Qwen/Qwen3.5-35B-A3B
tensor_parallel_size: 2
122b-a10b:
model_id: Qwen/Qwen3.5-122B-A10B
tensor_parallel_size: 4
122b-a10b-thinking:
model_id: Qwen/Qwen3.5-122B-A10B
tensor_parallel_size: 4
enable_thinking: true
max_tokens: 8192
397b-a17b:
model_id: Qwen/Qwen3.5-397B-A17B
tensor_parallel_size: 8
397b-a17b-thinking:
model_id: Qwen/Qwen3.5-397B-A17B
tensor_parallel_size: 8
enable_thinking: true
max_tokens: 8192
qwen2.5-vl:
defaults:
type: offline
provider: qwen2.5-vl
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
gpu_memory_utilization: 0.85
max_images_per_prompt: 128
batch_size: 4
nframes: 128
variants:
7b:
model_id: Qwen/Qwen2.5-VL-7B-Instruct
tensor_parallel_size: 1
qwen2-vl:
# Reuse the Qwen2.5-VL wrapper — it falls back gracefully to the older
# qwen_vl_utils 2-tuple process_vision_info API that Qwen2-VL needs.
# Used as §4.3.4(a) base for Flash-VStream-7B (Flash-VStream's backbone
# is Qwen2-VL-7B-Instruct, see models/flash_vstream_models.py).
defaults:
type: offline
provider: qwen2.5-vl
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
gpu_memory_utilization: 0.85
max_images_per_prompt: 128
batch_size: 4
nframes: 128
variants:
7b:
model_id: Qwen/Qwen2-VL-7B-Instruct
tensor_parallel_size: 1
gemma4:
defaults:
type: offline
provider: gemma4
sampling_strategy: fixed
max_frames: 128
fps: 2
frame_size: 512
nframes: 128
max_tokens: 512
temperature: 0.0
tensor_parallel_size: 1
gpu_memory_utilization: 0.92
max_images_per_prompt: 128
max_soft_tokens: 70
batch_size: 8
enable_thinking: false
enable_chunked_prefill: true
max_model_len: 16384
max_num_batched_tokens: 131072
max_num_seqs: 16
disable_mm_preprocessor_cache: false
variants:
e2b:
model_id: google/gemma-4-E2B-it
e4b:
model_id: google/gemma-4-E4B-it
26b-a4b:
model_id: google/gemma-4-26B-A4B-it
batch_size: 4
max_num_batched_tokens: 65536
max_num_seqs: 8
glm-4.6v:
defaults:
# Served by local vLLM OpenAI-compatible server; inference.py uses
# the existing OpenAI client wrapper with OPENAI_BASE_URL pointed at it.
type: api
provider: openai
model_id: glm-4.6v-flash
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 64
temperature: 0.0
sampling_strategy: fixed
nframes: 128
batch_size: 1
tensor_parallel_size: 1
api_workers: 16
vllm_server:
dtype: bfloat16
gpu_memory_utilization: 0.95
max_model_len: 65536
max_num_seqs: 8
max_num_batched_tokens: 131072
mm_processor_cache_gb: 8
generation_config: vllm
limit_mm_per_prompt:
image: 128
video: 0
variants:
flash: {}
flash-thinking:
# GLM-4.6V-Flash with chat-template thinking switch ON (explicit via
# extra_body), mirroring the flash-nothink variant pattern.
# The default max_tokens=64 (above) is much too small for reasoning;
# bump to 16384 and raise vLLM server concurrency for high GPU util.
model_id: glm-4.6v-flash
max_tokens: 16384
temperature: 0.0
enable_thinking: true
extra_body:
chat_template_kwargs:
enable_thinking: true
api_workers: 32
batch_size: 1
vllm_server:
dtype: bfloat16
gpu_memory_utilization: 0.95
max_model_len: 65536
max_num_seqs: 32
max_num_batched_tokens: 131072
mm_processor_cache_gb: 8
generation_config: vllm
limit_mm_per_prompt:
image: 128
video: 0
minicpm-v:
defaults:
type: offline
provider: minicpm-v
model_id: openbmb/MiniCPM-V-4_5
max_frames: 180
fps: 3
frame_size: 448
max_tokens: 1024
temperature: 0.0
batch_size: 1
tensor_parallel_size: 1
attn_implementation: sdpa
torch_dtype: bfloat16
sampling: false
num_beams: 1
repetition_penalty: 1.05
enable_thinking: false
use_temporal_ids: true
max_slice_nums: 1
use_image_id: false
max_packing: 3
time_scale: 0.1
variants:
"4.5": {}
internvl3.5:
defaults:
type: offline
provider: internvl
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
gpu_memory_utilization: 0.85
max_images_per_prompt: 128
batch_size: 4
variants:
1b:
model_id: OpenGVLab/InternVL3_5-1B
tensor_parallel_size: 1
2b:
model_id: OpenGVLab/InternVL3_5-2B
tensor_parallel_size: 1
4b:
model_id: OpenGVLab/InternVL3_5-4B
tensor_parallel_size: 1
30b-a3b:
model_id: OpenGVLab/InternVL3_5-30B-A3B
tensor_parallel_size: 2
8b:
model_id: OpenGVLab/InternVL3_5-8B
tensor_parallel_size: 2
8b-thinking:
# Per InternVL3.5 model card: thinking mode uses R1_SYSTEM_PROMPT
# (injected by the wrapper when enable_thinking=true) plus
# temperature=0.6 + top_p=0.95 to mitigate repetition in the trace.
# This is the only deviation from T=0 in the thinking-pair set;
# documented as a footnote in paper §4.3.1.
# NOTE: must override prompt_style to 'cot' — the default style says
# "Respond with ONLY the letter ... Do not include explanation",
# which directly contradicts the R1 protocol and collapses the
# thinking trace to a single letter answer. Qwen thinking is immune
# because its chat template programmatically injects <think>.
model_id: OpenGVLab/InternVL3_5-8B
tensor_parallel_size: 2
enable_thinking: true
prompt_style: cot
temperature: 0.6
top_p: 0.95
max_tokens: 16384
38b:
model_id: OpenGVLab/InternVL3_5-38B
tensor_parallel_size: 4
38b-u256:
# u256 rescue variant: InternVL-3.5-38B has max_position_embeddings
# = 40960 (no RoPE scaling) — a hard architectural ceiling. With
# default force_image_size=448 each frame consumes 256 visual
# tokens, so 256 frames = 65536 > 40960 and vLLM refuses to load.
# Lower force_image_size to 224 → 64 tokens/frame → 256 frames =
# 16384 vision tokens, well under 40960. Trade-off: lower visual
# fidelity per frame (half-res); this is the only way to fit u256.
model_id: OpenGVLab/InternVL3_5-38B
tensor_parallel_size: 4
force_image_size: 224
max_images_per_prompt: 256
batch_size: 2
gpu_memory_utilization: 0.80
38b-thinking:
# Same R1_SYSTEM_PROMPT + cot user prompt + T=0.6/top_p=0.95 recipe
# as 8b-thinking (verified working on 8B smoke run).
model_id: OpenGVLab/InternVL3_5-38B
tensor_parallel_size: 2
enable_thinking: true
prompt_style: cot
temperature: 0.6
top_p: 0.95
max_tokens: 16384
241b-a28b:
model_id: OpenGVLab/InternVL3_5-241B-A28B
tensor_parallel_size: 8
llava-next-video:
type: offline
provider: llava-next-video
model_id: lmms-lab/LLaVA-NeXT-Video-7B
max_frames: 24
fps: 1
frame_size: 336
max_tokens: 1024
temperature: 0.0
conv_template: v1
batch_size: 1
llava-video-7b-qwen2:
# §4.3.4(a) base for StreamForest-7B. Vanilla LLaVA-Video-Qwen2 via the
# streamingtom provider with use_streamingtom_patch=false — this routes
# through StreamingTOM's vendored LLaVA-NeXT loader (which supports the
# `grid` mm_newline_position that LLaVA-Video uses) but skips the
# StreamingTOM KV-compression patch so we get vanilla LLaVA-Video
# behavior.
type: offline
provider: streamingtom
model_id: lmms-lab/LLaVA-Video-7B-Qwen2
use_streamingtom_patch: false
use_streaming: false
conv_template: qwen_1_5
loader_model_name: llava_qwen
mm_spatial_pool_stride: 2
mm_spatial_pool_mode: bilinear
max_frames: 64
fps: 1
frame_size: 384
max_tokens: 1024
temperature: 0.0
batch_size: 1
llava-onevision-7b-qwen2:
# §4.3.4(a) base for StreamingTOM. Vanilla LlavaQwenForCausalLM via the
# same streamingtom provider + use_streamingtom_patch=false path as
# llava-video-7b-qwen2 above.
type: offline
provider: streamingtom
model_id: lmms-lab/llava-onevision-qwen2-7b-ov
use_streamingtom_patch: false
use_streaming: false
conv_template: qwen_1_5
loader_model_name: llava_qwen
mm_spatial_pool_stride: 2
mm_spatial_pool_mode: bilinear
max_frames: 32
fps: 1
frame_size: 384
max_tokens: 1024
temperature: 0.0
batch_size: 1
llava-onevision-7b-qwen2-hf:
# §4.3.4(a) base for StreamingTOM, served via the vllm-native
# LlavaOnevisionForConditionalGeneration path (vllm >= 0.17). Uses the
# HF-converted llava-hf/llava-onevision-qwen2-7b-ov-hf checkpoint.
type: offline
provider: llava-onevision-vllm
model_id: llava-hf/llava-onevision-qwen2-7b-ov-hf
max_frames: 32
max_images_per_prompt: 32
fps: 1
frame_size: 384
max_tokens: 1024
temperature: 0.0
tensor_parallel_size: 1
gpu_memory_utilization: 0.85
sampling_strategy: fixed
nframes: 32
batch_size: 4
streaming-general-mllm:
streaming-vlm:
type: offline
provider: streaming-vlm
model_id: mit-han-lab/StreamingVLM
model_base: Qwen2_5
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
temperature: 0.0
attn_implementation: flash_attention_2
batch_size: 1
streamforest:
type: offline
provider: streamforest
model_id: MCG-NJU/StreamForest-Qwen2-7B
conv_template: qwen_2
attn_implementation: sdpa
max_frames: 64
max_frames_num: 64
fps: 1
frame_size: 384
max_tokens: 1024
temperature: 0.0
time_msg: short
token_strategy: single
batch_size: 1
infinitevl:
type: offline
provider: infinitevl
model_id: HiLight-Capture/InfiniteVL-4B-LongSFT
max_frames: 128
fps: 2
frame_size: 448
max_tokens: 1024
temperature: 0.0
stream_fps: 1
batch_size: 1
flash-vstream-qwen-7b:
type: offline
provider: flash-vstream
model_id: zhang9302002/Flash-VStream-Qwen-7b
max_frames: 128
fps: 2
frame_size: 512
max_pixels: 50176
max_tokens: 128
temperature: 0.0
attn_implementation: flash_attention_2
torch_dtype: bfloat16
batch_size: 1
token-compression-method:
hermes:
defaults:
type: offline
provider: hermes
model_id: Qwen/Qwen2.5-VL-7B-Instruct
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 128
temperature: 0.0
kv_size: 6000
sample_fps: 0.5
encode_chunk_size: 16
streaming: true
mc_max_new_tokens: 16
open_max_new_tokens: 256
batch_size: 1
tensor_parallel_size: 1
variants:
base: {}
n128:
# Uniform-frames ablation: bypass video-streaming, consume the
# project's pre-cached fixed-128 frames via inference(frames, prompt).
use_streaming: false
sampling_strategy: fixed
nframes: 128
max_frames: 128
n256:
use_streaming: false
sampling_strategy: fixed
nframes: 256
max_frames: 256
infinipot:
defaults:
type: offline
provider: infinipot
model_id: Qwen/Qwen2.5-VL-7B-Instruct
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 128
temperature: 0.0
block_size: 32
compress_frame_num: 24
compression_method: infinipot-v
tar_ratio: 0.5
query_ratio: 0.25
adaptive_pooling: false
max_frames_num: 768
sample_fps: 1.0
batch_size: 1
variants:
base: {}
n128:
# Uniform-frames ablation / 4.3 image-option fallback: bypass the
# upstream video-path streaming path and consume project-cached
# fixed-128 frames via inference(frames, prompt[, option_images]).
use_streaming: false
sampling_strategy: fixed
nframes: 128
max_frames: 128
fluxmem:
defaults:
type: offline
provider: fluxmem
model_id: Qwen/Qwen2.5-VL-7B-Instruct
max_frames: 256
fps: 1
frame_size: 512
max_tokens: 128
temperature: 0.0
short_frames: 8
medium_frames: 64
sample_fps: 1.0
min_pixels: 12544
max_pixels: 401408
min_frames: 4
max_num_frames: 256
time_window_size: 256
frame_sampling: uniform
batch_size: 1
tensor_parallel_size: 1
variants:
base: {}
n128:
# Uniform-frames ablation: bypass video-streaming, consume the
# project's pre-cached fixed-128 frames via inference(frames, prompt).
use_streaming: false
sampling_strategy: fixed
nframes: 128
max_frames: 128
max_num_frames: 128
n256:
use_streaming: false
sampling_strategy: fixed
nframes: 256
max_frames: 256
max_num_frames: 256
streamingtom:
type: offline
provider: streamingtom
model_id: lmms-lab/llava-onevision-qwen2-7b-ov
max_frames: 128
fps: 1
frame_size: 336
max_tokens: 128
temperature: 0.0
stream_fps: 1.0
encoder_batch_size: 32
ctr_retain_tokens: 50
ctr_similarity_threshold: 0.9
ctr_k: 7
ctr_beta: 0.6
conv_template: qwen_1_5
loader_model_name: llava_qwen
mm_spatial_pool_stride: 2
mm_spatial_pool_mode: bilinear
oqm_enable_quantization: true
oqm_quantization_bits: 4
oqm_retrieval_max_tokens: 12544
oqm_sliding_window_size: 4800
oqm_init_token_count: 14
batch_size: 1
open-source-spatial-mllm:
cambrian-s:
defaults:
type: offline
provider: cambrian-mllm
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 512
temperature: 0.0
conv_template: qwen_2
video_max_frames: 128
video_fps: 1
miv_token_len: 64
si_token_len: 729
image_aspect_ratio: anyres
anyres_max_subimages: 9
num_beams: 1
variants:
base:
model_id: nyu-visionx/Cambrian-S-7B
batch_size: 4
lfp:
model_id: nyu-visionx/Cambrian-S-7B-LFP
lfp: true
batch_size: 1
sensory_window_size: 32
surprise_threshold: 0.0
compression_downsample_ratio: 2
consolidation_method: drop
consolidation_mem_budget: 8192
retrieval_topk: 1
sensenova-si:
defaults:
type: offline
provider: internvl
max_frames: 128
fps: 1
frame_size: 448
max_tokens: 1024
temperature: 0.0
gpu_memory_utilization: 0.90
max_images_per_prompt: 128
max_dynamic_patch: 1
batch_size: 4
nframes: 128
tensor_parallel_size: 1
variants:
1.5-internvl3-8b:
model_id: sensenova/SenseNova-SI-1.5-InternVL3-8B
cosmos-reason1-7b:
# Official ModelScope card recommends vLLM, fps=4, max_tokens>=4096,
# and CoT-style <think>/<answer> output for embodied reasoning.
type: offline
provider: qwen2.5-vl
model_id: unsloth/Cosmos-Reason1-7B
max_frames: 128
fps: 4
frame_size: 512
max_tokens: 4096
temperature: 0.6
top_p: 0.95
repetition_penalty: 1.05
prompt_style: cot
system_prompt: |-
You are a helpful assistant. Answer the question in the following format: <think>
your reasoning
</think>
<answer>
your answer
</answer>.
sampling_strategy: fixed
nframes: 128
tensor_parallel_size: 1
gpu_memory_utilization: 0.92
max_images_per_prompt: 128
batch_size: 16
max_model_len: 65536
max_num_seqs: 16
max_num_batched_tokens: 131072
enable_chunked_prefill: true
vebrain:
# ModelScope model card is minimal; config.json declares Qwen2.5-VL.
type: offline
provider: qwen2.5-vl
model_id: OpenGVLab/VeBrain
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
temperature: 0.0
sampling_strategy: fixed
nframes: 128
tensor_parallel_size: 1
gpu_memory_utilization: 0.92
max_images_per_prompt: 128
batch_size: 16
max_model_len: 65536
max_num_seqs: 16
max_num_batched_tokens: 131072
enable_chunked_prefill: true
rynnbrain-8b:
# Official card uses Transformers AutoModelForImageTextToText; the
# checkpoint config is Qwen3-VL, so this wrapper runs the same chat
# template through vLLM for batched OVO-S evaluation.
type: offline
provider: qwen
model_id: DAMO_Academy/RynnBrain-8B
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
temperature: 0.0
sampling_strategy: fixed
nframes: 128
tensor_parallel_size: 1
gpu_memory_utilization: 0.92
max_images_per_prompt: 128
batch_size: 16
max_model_len: 65536
max_num_seqs: 16
max_num_batched_tokens: 131072
enable_chunked_prefill: true
robobrain2.5-4b:
# Official RoboBrain2.5 quickstart wraps the checkpoint in
# UnifiedInference; config.json declares Qwen3-VL, enabling vLLM here.
type: offline
provider: qwen
model_id: BAAI/RoboBrain2.5-4B
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
temperature: 0.0
sampling_strategy: fixed
nframes: 128
tensor_parallel_size: 1
gpu_memory_utilization: 0.92
max_images_per_prompt: 128
batch_size: 24
max_model_len: 65536
max_num_seqs: 24
max_num_batched_tokens: 131072
enable_chunked_prefill: true
robobrain2.5-8b-nv:
# Official RoboBrain2.5 quickstart wraps the checkpoint in
# UnifiedInference; config.json declares Qwen3-VL, enabling vLLM here.
type: offline
provider: qwen
model_id: BAAI/RoboBrain2.5-8B-NV
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
temperature: 0.0
sampling_strategy: fixed
nframes: 128
tensor_parallel_size: 1
gpu_memory_utilization: 0.92
max_images_per_prompt: 128
batch_size: 16
max_model_len: 65536
max_num_seqs: 16
max_num_batched_tokens: 131072
enable_chunked_prefill: true
vst-7b:
defaults:
type: offline
provider: qwen2.5-vl
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 1024
temperature: 0.0
gpu_memory_utilization: 0.92
max_images_per_prompt: 128
batch_size: 16
nframes: 128
tensor_parallel_size: 1
max_model_len: 65536
max_num_seqs: 16
variants:
sft:
model_id: rayruiyang/VST-7B-SFT
rl:
model_id: rayruiyang/VST-7B-RL
spatial-mllm:
defaults:
type: offline
provider: spatial-mllm
model_id: Diankun/Spatial-MLLM-v1.1-Instruct-820K
max_frames: 128
fps: 1
frame_size: 512
max_tokens: 1024
temperature: 0.1
top_p: 0.001
nframes: 128
batch_size: 1
tensor_parallel_size: 1
variants:
base: {}
w-sa-sampling:
sa_sampling: true
vggt_model_path: facebook/VGGT-1B
sa_candidate_frames: 128
spatial-ttt:
type: offline
provider: spatial-ttt
model_id: THU-SI/Spatial-TTT-nano
max_frames: 128
fps: 2
frame_size: 512
max_tokens: 128
temperature: 0.0
num_lact_heads: 4
w0_w2_low_rank: 0
use_fused_kernel: false
use_conv_layer: true
lact_chunk_size: 2648
window_size: 2648
lact_layers: "0/1/2/4/5/6/8/9/10/12/13/14/16/17/18/20/21/22/24/25/26"
resize_height: 352
resize_width: 480
batch_size: 1
tensor_parallel_size: 1
# Evaluation settings
EVAL:
num_workers: 4
save_interval: 5
timeout: 120
max_retries: 3
# Data paths
PATHS:
annotation_dir: "../annotation"
video_base_dir: "../../Datasets/_selected_data"
results_dir: "./results"
# Video source mapping
VIDEO_SOURCES:
Sekai: "Sekai"
Ego4D: "Ego4D"
RoomTour3D: "RoomTour3D"
CODa_full: "CODa_full"
OmniWorld: "OmniWorld"
# Task definitions
TASKS:
level_1:
- "1.1.1" # Absolute Distance
- "1.1.2" # Relative Physical Scale
- "1.1.3" # Passability Affordance