From 8fd73e3ad97ae7f8833e2643908262ffcabf77ae Mon Sep 17 00:00:00 2001 From: Jee Jee Li Date: Fri, 7 Feb 2025 15:05:22 +0000 Subject: [PATCH] Done Signed-off-by: Jee Jee Li --- vllm/model_executor/models/qwen2_5_vl.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vllm/model_executor/models/qwen2_5_vl.py b/vllm/model_executor/models/qwen2_5_vl.py index e93cf46b900b..1f350ab203f5 100644 --- a/vllm/model_executor/models/qwen2_5_vl.py +++ b/vllm/model_executor/models/qwen2_5_vl.py @@ -760,9 +760,12 @@ class Qwen2_5_VLForConditionalGeneration(nn.Module, SupportsMultiModal, "q_proj", "k_proj", "v_proj", - ] + ], + "gate_up_proj": [ + "gate_proj", + "up_proj", + ], } - # LoRA specific attributes, TODO: double check supported_lora_modules = [ "qkv_proj",