Qwen3.5 Collections
Collection
Quantized Qwen 3.5 models for efficient image-text understanding (AutoRound W4A16) • 6 items • Updated
How to use J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Describe this image in one sentence."
},
{
"type": "image_url",
"image_url": {
"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
}
}
]
}
]
}'docker model run hf.co/J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ
How to use J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Describe this image in one sentence."
},
{
"type": "image_url",
"image_url": {
"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
}
}
]
}
]
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Describe this image in one sentence."
},
{
"type": "image_url",
"image_url": {
"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
}
}
]
}
]
}'How to use J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ with Docker Model Runner:
docker model run hf.co/J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ
This repository contains a W4A16 (4-bit weights, 16-bit activations) quantized version of Qwen/Qwen3.5-0.8B generated using Intel's AutoRound algorithm.
The model was calibrated and quantized using production-grade settings to minimize accuracy degradation while significantly lowering VRAM requirements:
sym): Truensamples): 512seqlen): 4096iters): 1000quant_nontext_module): False (Kept in BF16 to preserve visual reasoning and OCR precision)layer_config): Multi-Token Prediction (mtp, mtp.fc) layers preserved in native bfloat16.For high-throughput production serving:
vllm serve J-Fraudster/Qwen3.5-0.8B-W4A16-AutoRound-GPTQ \
--quantization auto-round \
--dtype bfloat16 \
--max-model-len 4096 \
--gpu-memory-utilization 0.90
(Note: For the GPTQ format repo, you can set --quantization gptq if required by your backend).