From c5d937b9c4d9b8ceab7b66bef81e1892c6fdb2ca Mon Sep 17 00:00:00 2001 From: CalamitousFelicitousness Date: Sat, 25 Oct 2025 20:26:38 +0100 Subject: [PATCH] Fix typo in Qwen2.5 VL 4B to 3B https://huggingface.co/Qwen/Qwen2.5-VL-3B-Instruct has been wrongly named 4B in Captioning menu. --- modules/interrogate/vqa.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/interrogate/vqa.py b/modules/interrogate/vqa.py index 0821d5c4f..cb1780677 100644 --- a/modules/interrogate/vqa.py +++ b/modules/interrogate/vqa.py @@ -14,14 +14,14 @@ processor = None model = None loaded: str = None quant_args = None -vlm_default = "Alibaba Qwen 2.5 VL 4B" +vlm_default = "Alibaba Qwen 2.5 VL 3B" vlm_models = { "Google Gemma 3 4B": "google/gemma-3-4b-it", "Google Gemma 3n E2B": "google/gemma-3n-E2B-it", # 1.5GB "Google Gemma 3n E4B": "google/gemma-3n-E4B-it", # 1.5GB "Alibaba Qwen 2.0 VL 2B": "Qwen/Qwen2-VL-2B-Instruct", "Alibaba Qwen 2.5 Omni 3B": "Qwen/Qwen2.5-Omni-3B", - "Alibaba Qwen 2.5 VL 4B": "Qwen/Qwen2.5-VL-3B-Instruct", + "Alibaba Qwen 2.5 VL 3B": "Qwen/Qwen2.5-VL-3B-Instruct", "Huggingface Smol VL2 0.5B": "HuggingFaceTB/SmolVLM-500M-Instruct", "Huggingface Smol VL2 2B": "HuggingFaceTB/SmolVLM-Instruct", "Apple FastVLM 0.5B": "apple/FastVLM-0.5B",