Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -20,7 +20,7 @@ NVFP4 (W4A4, group 16) quantization of [**AEON-7/Qwen3.8-27B-AEON-ULTIMATE-UNCEN
|
|
| 20 |
|
| 21 |
**55.6 GB β 20.58 GB.** Fits on two 16 GB cards with real KV headroom.
|
| 22 |
|
| 23 |
-
-
|
| 24 |
- bf16 kept for: `lm_head`, the vision tower, the DeltaNet `conv1d`, and the MTP head. Everything else is NVFP4 W4A4.
|
| 25 |
- Built for **SM120 / Blackwell with vanilla vLLM v0.22.0** β compressed-tensors is auto-detected, no `--quantization` flag.
|
| 26 |
- Quantized GPU-resident (full bf16 dispatched across 7Γ RTX PRO 2000 Blackwell via `device_map=auto`): **122 seconds end to end.**
|
|
@@ -42,23 +42,23 @@ Sanity-checked after quantization: Japanese self-introduction, arithmetic/primal
|
|
| 42 |
```bash
|
| 43 |
vllm serve sakamakismile/Qwen3.8-27B-AEON-ULTIMATE-UNCENSORED-NVFP4 \
|
| 44 |
--trust-remote-code --tensor-parallel-size 4 \
|
| 45 |
-
--max-model-len 32768 --kv-cache-dtype fp8 --reasoning-parser qwen3
|
|
|
|
| 46 |
```
|
| 47 |
|
| 48 |
-
**Do not add `--speculative-config` with this model.** See the first gotcha below.
|
| 49 |
-
|
| 50 |
On boards without P2P add `NCCL_P2P_DISABLE=1` and `--disable-custom-all-reduce`.
|
| 51 |
|
| 52 |
## β οΈ Gotchas
|
| 53 |
|
| 54 |
-
- **
|
| 55 |
|
| 56 |
-
|
|
|
|
|
|
|
| 57 |
|
| 58 |
-
|
| 59 |
- **The 15 `mtp.*` modules are listed in `quantization_config.ignore` β do not remove them.** If vLLM treats the bf16 MTP head as NVFP4 the draft breaks silently: 0% acceptance, slower than no MTP at all.
|
| 60 |
- W4A16 (NVFP4A16) does **not** serve on this architecture in vLLM 0.22 (`gptq_marlin_repack: size_n=24 not divisible by tile_n_size=64`). W4A4 only.
|
| 61 |
-
- Reasoning model: give it `max_tokens β₯ 4096`, or use `chat_template_kwargs: {"reasoning_effort": "low"}` for long-form generation β at the default effort it can spend the entire budget thinking.
|
| 62 |
- Long single-file code generation drops a closing paren roughly 1β2 times in 14 regardless of sampling temperature (measured with a JS parser on the base Qwen3.8-27B). Put a syntax check in the loop rather than tuning temperature.
|
| 63 |
|
| 64 |
## Recipe
|
|
|
|
| 20 |
|
| 21 |
**55.6 GB β 20.58 GB.** Fits on two 16 GB cards with real KV headroom.
|
| 22 |
|
| 23 |
+
- **MTP draft head preserved in bf16** and wired into the index β speculative decoding works (see the note on reasoning effort below).
|
| 24 |
- bf16 kept for: `lm_head`, the vision tower, the DeltaNet `conv1d`, and the MTP head. Everything else is NVFP4 W4A4.
|
| 25 |
- Built for **SM120 / Blackwell with vanilla vLLM v0.22.0** β compressed-tensors is auto-detected, no `--quantization` flag.
|
| 26 |
- Quantized GPU-resident (full bf16 dispatched across 7Γ RTX PRO 2000 Blackwell via `device_map=auto`): **122 seconds end to end.**
|
|
|
|
| 42 |
```bash
|
| 43 |
vllm serve sakamakismile/Qwen3.8-27B-AEON-ULTIMATE-UNCENSORED-NVFP4 \
|
| 44 |
--trust-remote-code --tensor-parallel-size 4 \
|
| 45 |
+
--max-model-len 32768 --kv-cache-dtype fp8 --reasoning-parser qwen3 \
|
| 46 |
+
--speculative-config '{"method":"qwen3_5_mtp","num_speculative_tokens":3}'
|
| 47 |
```
|
| 48 |
|
|
|
|
|
|
|
| 49 |
On boards without P2P add `NCCL_P2P_DISABLE=1` and `--disable-custom-all-reduce`.
|
| 50 |
|
| 51 |
## β οΈ Gotchas
|
| 52 |
|
| 53 |
+
- **Use `reasoning_effort: "medium"` for anything long-form.** At the default (highest) effort this model can spend its entire token budget inside `<think>` β the reasoning block grows past 18,000 characters, sometimes degenerating into repeating a single line, and no answer is ever emitted. At medium effort the same prompts finish cleanly every time: I ran a 9-case gate (French and English long-form, temperature 0 and 0.7) in three configurations β NVFP4 with MTP `num_speculative_tokens: 6`, NVFP4 without MTP, and the original bf16 checkpoint with MTP β and all 27 runs passed with thinking held to 1β3k characters.
|
| 54 |
|
| 55 |
+
```json
|
| 56 |
+
"chat_template_kwargs": {"reasoning_effort": "medium"}
|
| 57 |
+
```
|
| 58 |
|
| 59 |
+
**Speculative decoding is fine** β an earlier version of this card told you to disable it, which was wrong. MTP at n=6 passes the gate as long as the effort is medium. My apologies for the misdirection, and thanks to the user on Jetson / vLLM 0.27.1 who reported the looping.
|
| 60 |
- **The 15 `mtp.*` modules are listed in `quantization_config.ignore` β do not remove them.** If vLLM treats the bf16 MTP head as NVFP4 the draft breaks silently: 0% acceptance, slower than no MTP at all.
|
| 61 |
- W4A16 (NVFP4A16) does **not** serve on this architecture in vLLM 0.22 (`gptq_marlin_repack: size_n=24 not divisible by tile_n_size=64`). W4A4 only.
|
|
|
|
| 62 |
- Long single-file code generation drops a closing paren roughly 1β2 times in 14 regardless of sampling temperature (measured with a JS parser on the base Qwen3.8-27B). Put a syntax check in the loop rather than tuning temperature.
|
| 63 |
|
| 64 |
## Recipe
|