diff --git a/examples/llava/qwen2_vl_surgery.py b/examples/llava/qwen2_vl_surgery.py index 9d4ad8932..0a47a719f 100644 --- a/examples/llava/qwen2_vl_surgery.py +++ b/examples/llava/qwen2_vl_surgery.py @@ -6,11 +6,11 @@ import numpy as np from gguf import * from transformers import ( AutoProcessor, - Qwen2VLForConditionalGeneration, - Qwen2_5_VLForConditionalGeneration, - Qwen2VLProcessor, Qwen2VLConfig, - Qwen2_5_VLConfig, + Qwen2VLProcessor, + Qwen2VLForConditionalGeneration, + Qwen2_5_VLConfig, # type: ignore[reportAttributeAccessIssue] + Qwen2_5_VLForConditionalGeneration, # type: ignore[reportAttributeAccessIssue] )