Views
No views yet
| model | perplexity | vs BF16 | size |
|---|---|---|---|
| BF16 (base) | 10.0216 | — | 7.5 GB |
| GPTQ W4A16 (this) | 10.3261 | +3.04 % | 2.48 GB |
| AWQ W4A16 | 10.5907 | +5.68 % | 3.21 GB |
| metric | value |
|---|---|
| VRAM to load | ~2.7 GB (incl. ~1.3 GB CUDA context) |
| weights on disk | 2.48 GB |
| decode speed | 58.0 tok/s (single stream, vLLM) |
1from vllm import LLM
2llm = LLM("Subalzt/Qwen3-4B-Instruct-2507-GPTQ-W4A16")
3print(llm.generate("Write a Python function for binary search.")[0].outputs[0].text)Qwen/Qwen3-4B-Instruct-2507.