Views
No views yet
Qwen/Qwen3-32B. Built to run on a single 24 GB+ GPU.| Source params | 32B |
| Quantized weights | ~18 GB on disk |
| Inference VRAM (incl. KV cache @ 32K context) | ~24 GB |
drawais/needle-1M-bench-mvp (50K-token haystack, real arxiv text):| Metric | Score |
|---|---|
| Overall recall | 100.0% |
| Paper-anchored | 100.0% |
| Synthetic codes | 100.0% |
vllm serve drawais/Qwen3-32B-AWQ-INT4 --quantization awq_marlin --max-model-len 327681from transformers import AutoTokenizer, AutoModelForCausalLM
2tok = AutoTokenizer.from_pretrained("drawais/Qwen3-32B-AWQ-INT4")
3model = AutoModelForCausalLM.from_pretrained("drawais/Qwen3-32B-AWQ-INT4", device_map="auto")