Views
No views yet
compressed-tensors format for efficient inference with
vLLM.| Base model | Qwen/Qwen3.5-4B |
| Parameters | ~4B |
| Modality | Image-Text-to-Text (vision-language) |
| Architecture | Hybrid Gated DeltaNet + sparse MoE, with a vision encoder |
| Context length | 262,144 tokens native (extensible with RoPE scaling) |
| Languages | 201 languages and dialects |
| License | Apache 2.0 |
| Method | NVFP4 (4-bit floating point) |
| Format | compressed-tensors |
| Quantized modules | Linear layers of the language model |
| Kept in higher precision | Vision tower, router gates, and lm_head |
| Recommended hardware | NVIDIA Blackwell (FP4 tensor cores, sm_120) |
1docker run --rm --gpus all -p 8000:8000 \
2 -v "$PWD:/models" \
3 vllm/vllm-openai:latest \
4 --model /models/Qwen3.5-4B-NVFP4 \
5 --served-model-name Qwen3.5-4B-NVFP4 \
6 --quantization compressed-tensors \
7 --max-model-len 327681docker run --rm --gpus all -p 8000:8000 \
2 vllm/vllm-openai:latest \
3 --model sanskar003/Qwen3.5-4B-NVFP4 \
4 --quantization compressed-tensors1curl -s http://localhost:8000/v1/chat/completions \
2 -H 'Content-Type: application/json' -d '{
3 "model": "Qwen3.5-4B-NVFP4",
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 }'compressed-tensors checkpoint.Qwen3_5ForConditionalGeneration
architecture.