Views
No views yet
| Feature | This Model | sakamakismile NVFP4 | RedHatAI NVFP4 |
|---|---|---|---|
| NVFP4 weights | ✅ | ✅ | ✅ |
| MTP layers | ✅ BF16 | ❌ | ✅ |
| Abliterated | ✅ | ✅ | ❌ |
| Speculative decode | ✅ 95 tok/s | ❌ ~70 tok/s | ✅ but censored |
model-mtp.safetensors)model-mtp.safetensors filemodel.safetensors.index.json with MTP weight mappings| Config | 1K ctx | 4K ctx | 16K ctx | 32K ctx | 64K ctx |
|---|---|---|---|---|---|
| MTP=3, seqs=1 (best) | 92.2 | 95.2 | 90.7 | 89.7 | 84.4 |
| MTP=2, seqs=4 | 87.2 | 75.5 | 82.8 | 81.6 | 74.4 |
| MTP=4, seqs=1 | 75.6 | 71.3 | 74.0 | 77.6 | 74.4 |
| No MTP (NVFP4 only) | ~71 | ~70 | ~74 | ~68 | ~70 |
1docker run -d --gpus all --network host --ipc host --shm-size=16g \
2 --name vllm-qwen36 \
3 -e VLLM_MARLIN_USE_ATOMIC_ADD=1 \
4 -e TORCH_MATMUL_PRECISION=high \
5 -v /path/to/models:/models \
6 ghcr.io/spark-arena/dgx-vllm-eugr-nightly:latest \
7 vllm serve /models/Qwen3.6-35B-A3B-abliterated-NVFP4-MTP \
8 --host 0.0.0.0 --port 8000 --max-model-len 131072 \
9 --max-num-batched-tokens 32768 --max-num-seqs 1 \
10 --trust-remote-code --gpu-memory-utilization 0.7 \
11 --reasoning-parser qwen3 --kv-cache-dtype fp8 \
12 --load-format instanttensor --attention-backend flashinfer \
13 --speculative-config '{"method": "mtp", "num_speculative_tokens": 3}' \
14 --enable-prefix-caching -tp 1