Skip to content

Commit f0c5ca6

Browse files
Fix qwen 2.5 VL multimodal example (#1541)
SUMMARY: Fix a failing qwen 2.5 VL example, just had incorrect dataset split configuration. TEST PLAN: Runs on H100 on latest llm-compressor Signed-off-by: Brian Dellabetta <[email protected]>
1 parent 7fb58df commit f0c5ca6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/multimodal_vision/qwen_2_5_vl_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
# Oneshot arguments
2222
DATASET_ID = "lmms-lab/flickr30k"
23-
DATASET_SPLIT = {"calibration": "test[:512]"}
23+
DATASET_SPLIT = "test[:512]"
2424
NUM_CALIBRATION_SAMPLES = 512
2525
MAX_SEQUENCE_LENGTH = 2048
2626

0 commit comments

Comments
 (0)