Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion unsloth/models/vision.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"mistral3",
"qwen3_vl",
"qwen3_vl_moe",
"idefics3",
]
VLLM_NON_LORA_VLM = [
"mllama",
Expand Down Expand Up @@ -459,7 +460,7 @@ def from_pretrained(
if is_vlm and fast_inference:
if not any(arch in VLLM_SUPPORTED_VLM for arch in model_types):
raise RuntimeError(
f"Unsloth: Fast inference is only supported for Language models and Qwen2.5-VL, Gemma3 among vision models. "
f"Unsloth: Fast inference is only supported for Language models and Qwen2.5-VL, Gemma3, Idefics3 among vision models. "
f"Found architectures: {', '.join(model_types)}!"
)

Expand Down