Views
No views yet
⚠️ This is v2. It is quantized from the 2026-08-24 upstream re-release (739e3c5b), in which huihui-ai narrowed the ablation to layers 18–51. The earlier upstream build ablated layers 15–63; the narrower range retains more of the original model's performance. v1 of this repo — the quantization of the older, more heavily ablated weights — has been deleted and is no longer downloadable. If you pulled this repo before 2026-08-24, re-download it.
FP8_DYNAMIC).| Version | v2 |
| Base revision | 739e3c5b89849f6c238ce1e5b70008612ae42cdd (2026-08-24) |
| Ablated layers upstream | 18–51 |
| Weights | FP8 e4m3, per-channel (static) |
| Activations | FP8 e4m3, dynamic per-token |
| Format | compressed-tensors (float-quantized) |
| Calibration | none required (data-free pipeline) |
Linear modules are quantized. Everything the upstream
Qwen/Qwen3.8-27B-FP8 release leaves alone is left in BF16 here too:linear_attn.* — the hybrid Mamba projections (in_proj_qkv, in_proj_a, in_proj_b, in_proj_z, out_proj), 48 layersvisual.blocks.*, visual.merger.*)embed_tokens, lm_head, and all normsmtp.*) — kept in BF16 rather than FP8, so speculative decoding still works1vllm serve batsclamp/Huihui-Qwen3.8-27B-abliterated-FP8-v2 \
2 --max-model-len 262144 \
3 --speculative-config '{"method": "mtp", "num_speculative_tokens": 3}' \
4 --reasoning-parser qwen3 \
5 --tool-call-parser qwen3_coder \
6 --override-generation-config '{"temperature": 1.0, "top_p": 0.95, "top_k": 20}'reasoning_effort: xhigh this model family will spend a very large output budget inside the reasoning block — measured 16k tokens / 26 min for one hard question on a GB10. It converges and returns a full answer, but if you cap max_tokens below what it needs you get finish_reason: length and an empty content. This is not specific to this quantization or to abliteration — stock Qwen/Qwen3.8-27B-FP8 behaves identically.