Views
No views yet
lm_head, visual / vision blocks, mlp.gate1import torch
2from transformers import AutoProcessor, Qwen3VLMoeForConditionalGeneration
3
4repo_id = "dtometzki/Qwen3-VL-30B-A3B-Instruct-FP8-DYNAMIC"
5
6model = Qwen3VLMoeForConditionalGeneration.from_pretrained(
7 repo_id,
8 device_map="auto",
9 torch_dtype="auto",
10 trust_remote_code=True,
11)
12
13processor = AutoProcessor.from_pretrained(repo_id, trust_remote_code=True)
14
15print("Model loaded ✅")1python -m vllm.entrypoints.openai.api_server \
2 --model ./Qwen3-VL-30B-A3B-Instruct-FP8-DYNAMIC \
3 --quantization fp8 \
4 --trust-remote-code \
5 --port 8000--max-model-len if you run out of memory.