INT4 weight-only quantization of
Qwen/QwQ-32B.
Qwen QwQ-32B in NVFP4 W4A4. Native vLLM compressed-tensors. About 17 GB on disk.
1vllm serve drawais/QwQ-32B-NVFP4 \
2 --max-model-len 32768 \
3 --gpu-memory-utilization 0.94
1from vllm import LLM, SamplingParams
2llm = LLM(model="drawais/QwQ-32B-NVFP4", max_model_len=32768)
3print(llm.generate(["Hello!"], SamplingParams(max_tokens=128))[0].outputs[0].text)
~20.7 GB on disk. Recommended VRAM: enough headroom for KV cache.
This artifact is a derivative work of
Qwen/QwQ-32B,
released by its original authors under the
Apache License, Version 2.0.
This artifact is distributed under the same license. The full license text is
included in
LICENSE, and required attribution is in
NOTICE.