This is an
AWQ W4A16 (4-bit weight) quantized version of
Qwen/Qwen3.5-9B, packaged in the
compressed-tensors format for efficient inference with
vLLM.
The quantization reduces the on-disk and VRAM footprint while preserving the
base model's vision-language capabilities, making it well-suited to a single
consumer GPU (e.g. an RTX 5090 / Blackwell, sm_120).
For full details on capabilities, benchmarks, and prompt formatting, see the
base model card.
The vision tower is intentionally left unquantized to preserve image
understanding quality.
1docker run --rm --gpus all -p 8000:8000 \
2 -v "$PWD:/models" \
3 vllm/vllm-openai:latest \
4 --model /models/Qwen3.5-9B-AWQ \
5 --served-model-name Qwen3.5-9B-AWQ \
6 --quantization compressed-tensors \
7 --dtype float16 \
8 --max-model-len 32768
1docker run --rm --gpus all -p 8000:8000 \
2 vllm/vllm-openai:latest \
3 --model sanskar003/Qwen3.5-9B-AWQ \
4 --quantization compressed-tensors \
5 --dtype float16
1curl -s http://localhost:8000/v1/chat/completions \
2 -H 'Content-Type: application/json' -d '{
3 "model": "Qwen3.5-9B-AWQ",
4 "messages": [{"role": "user", "content": "Give me three uses for an RTX 5090."}]
5 }'
1curl -s http://localhost:8000/v1/chat/completions \
2 -H 'Content-Type: application/json' -d '{
3 "model": "Qwen3.5-9B-AWQ",
4 "messages": [{"role": "user", "content": [
5 {"type": "text", "text": "Describe this image."},
6 {"type": "image_url", "image_url": {"url": "http://images.cocodataset.org/train2017/000000231895.jpg"}}
7 ]}]
8 }'
Released under
Apache 2.0, inherited from the base model
Qwen/Qwen3.5-9B. Please review and
comply with the base model's license terms.
Please cite the original Qwen work — see the
base model card for citation details.