needle-1M-bench + Qwen3 quantizations
Collection
Long-context faithfulness benchmark + audit-friendly Qwen3 quantized releases. Outputs ship; inputs are auditable. • 23 items • Updated
How to use drawais/Qwen3-32B-AWQ-INT4 with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "drawais/Qwen3-32B-AWQ-INT4"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "drawais/Qwen3-32B-AWQ-INT4",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/drawais/Qwen3-32B-AWQ-INT4
How to use drawais/Qwen3-32B-AWQ-INT4 with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "drawais/Qwen3-32B-AWQ-INT4" \
--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": "drawais/Qwen3-32B-AWQ-INT4",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'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 "drawais/Qwen3-32B-AWQ-INT4" \
--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": "drawais/Qwen3-32B-AWQ-INT4",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'How to use drawais/Qwen3-32B-AWQ-INT4 with Docker Model Runner:
docker model run hf.co/drawais/Qwen3-32B-AWQ-INT4
INT4 quantization of 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 |
Fits any 24 GB+ GPU: RTX 3090 / 4090 / 5090, A5000, A6000, A100 40GB, etc.
Scored on 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 32768
from transformers import AutoTokenizer, AutoModelForCausalLM
tok = AutoTokenizer.from_pretrained("drawais/Qwen3-32B-AWQ-INT4")
model = AutoModelForCausalLM.from_pretrained("drawais/Qwen3-32B-AWQ-INT4", device_map="auto")
Native: 40,960 tokens (inherits from base model). For longer contexts, enable YaRN rope-scaling per the base model's config.
Apache 2.0 (inherits from base model).
Base model
Qwen/Qwen3-32B
docker model run hf.co/drawais/Qwen3-32B-AWQ-INT4