Skip to content

Commit 1efc64a

Browse files
committed
deactivate video analysis for Gemma3
1 parent 8f1ec48 commit 1efc64a

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

tests/test_huggingface_vlm.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@
2020
def gemma3():
2121
return HuggingFaceVLM(
2222
model_id=HuggingFaceVLMs.gemma_3_27b_it,
23-
use_hosted_model=True,
23+
use_hosted_model=False,
2424
# 10 frames gets OOM at A100 (80GB) VRAM.
25-
max_n_frames_per_video=5,
25+
# 4 frames gets OOM at L4 (24GB) VRAM.
26+
max_n_frames_per_video=3,
2627
)
2728

2829

@@ -59,7 +60,7 @@ def test_huggingface_vlm_multi_turn_with_images(gemma3):
5960
assert_model_supports_multiturn_with_multiple_imgs(gemma3)
6061

6162

62-
@pytest.mark.skipif(condition=is_ci(), reason="Files are not available on CI")
63+
@pytest.mark.skip(reason="We currently run OOM on serverless and hosted.")
6364
def test_huggingface_vlm_multi_turn_with_6min_video(gemma3):
6465
assert_model_supports_multiturn_with_6min_video(gemma3)
6566

0 commit comments

Comments
 (0)