Views
No views yet
| Params | 27B |
|---|---|
| Active | 27B (dense) |
| Size | 20 GB |
| Perplexity | n/a |
| Refusals | n/a |
| Context | 256K |
| MTP head | bf16 |
compressed-tensors nvfp4-pack-quantized format with
llm-compressor (GPTQ + MSE, shared fused-layer
scales). This is a quantization only, the model is already uncensored/heretic upstream; no
further abliteration was applied here.mtp.*) and vision tower (model.visual.*) are kept at bf16, so speculative
decoding and image input are unaffected by 4-bit.Uncensored model (inherited from the base). It follows instructions without refusal guardrails. You are responsible for how you use it.
mtp_num_hidden_layers: 1) that lets the
model self-speculate: it drafts the next token(s) and verifies in one pass, cutting decode
latency without a separate draft model.re:.*mtp.* and keeps the head at bf16 (it is
tiny next to the 27B backbone). The 4-bit backbone does the heavy lifting; the full-precision MTP
head keeps acceptance high. The vision tower (re:.*visual.*) is kept at bf16 for the same
fidelity reason.config.json (compressed-tensors); no quantization flag needed.
--reasoning-parser qwen3 splits the <think> block into reasoning_content.1vllm serve maci0/Qwen3.6-27B-Fable-Fusion-711-Uncensored-Heretic-NM-DAU-MTP-NVFP4 \
2 --served-model-name fable-fusion-27b-nvfp4 \
3 --max-model-len 131072 \
4 --gpu-memory-utilization 0.90 \
5 --kv-cache-dtype fp8 \
6 --reasoning-parser qwen3--language-model-only to skip the vision tower and free KV cache for text use.1vllm serve maci0/Qwen3.6-27B-Fable-Fusion-711-Uncensored-Heretic-NM-DAU-MTP-NVFP4 \
2 --served-model-name fable-fusion-27b-nvfp4 \
3 --max-model-len 131072 --kv-cache-dtype fp8 --reasoning-parser qwen3 \
4 --speculative-config '{"method": "mtp", "num_speculative_tokens": 1}'num_speculative_tokens matches the head depth (mtp_num_hidden_layers: 1). Acceptance is not
penalized by quantization because the head is bf16.| Scheme | NVFP4, W4A4 |
| Weight rounding | GPTQ (Hessian-based error compensation), MSE observer |
| Weights | FP4 (E2M1), group_size=16, tensor_group, FP8 (E4M3) group scales, shared across fused layers |
| Activations | FP4, dynamic per-group, FP8 (E4M3) scales |
| Quantized | all language-model Linear layers |
| Kept in bf16 | MTP head (mtp.*), vision tower (model.visual.*), lm_head |
| Untouched | gated delta-net Conv1d and SSM params (A_log, dt_bias), never Linear |
AutoModelForImageTextToText so the vision tower is quantized-and-kept
(bf16) rather than dropped; the MTP head, which lives outside the transformers model graph, is
re-attached at bf16 from the base. GPTQ is a quantization-time cost only; inference speed and
format are identical to plain round-to-nearest NVFP4, but it chooses better 4-bit values.mtp_num_hidden_layers: 1) for speculative decoding.max_position_embeddings 262144).temperature=0.6, top_p=0.95, top_k=20temperature=1.0, top_p=0.95, top_k=20temperature=0.7, top_p=0.80, top_k=20--speculative-config.--reasoning-parser is not auto-detected; pass it explicitly.