CoolFace
Modelpublic

NullSense/Nanbeige4.2-3B-NVFP4-FP8-LoopShield

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
2likes77downloads
Model Card

Nanbeige4.2-3B-NVFP4-FP8-LoopShield

Mixed-precision quantization of Nanbeige/Nanbeige4.2-3B (looped transformer, 22 layers × 2 passes/token): FP8-dynamic on attention, `down_proj`, and the first/last 3 layers' MLP; NVFP4 (weight-only, group-16) on middle-layer `gate/up_proj`. 4.5 GB. format: mixed-precision (compressed-tensors).

The nitty gritty

Naive uniform NVFP4 on this looped architecture loses 8 points of GSM8K strict (quantization error compounds across the two loop passes — consistent with LoopQ, arXiv:2605.16343, the only prior looped-LLM PTQ study, which tested INT only; these are, as far as I can tell, the first FP4-family numbers for a looped LLM). The protection recipe that llama.cpp's quant mixes, Unsloth's ablations, and llmcompressor's own non-uniform example all converge on recovered it completely:

stepGSM8K strict (n=100)
uniform NVFP4A1681
+ FP8 attention & down_proj (all layers)84
+ FP8 gate/up in layers 0-2 & 19-21 (this repo)89 — bf16/FP8 parity

The edge-band ratio follows APEX's ablation (~12.5% of depth per side); the tensor priority (down_proj > attention > gate/up) matches llama.cpp's quant mixes, Unsloth's sensitivity ablations, and llmcompressor's own non-uniform example.

Super-weight verification (2026-07-23): this model's super weight (the single most load-bearing scalar, Apple 2411.07191) sits at layers.1.mlp.down_proj.weight[1252, 6883] (largest weight in its tensor, 11.4x p99.99; drives a 26,752-magnitude activation spike, 1,300x the median). This recipe protects both the weight (all-layer FP8 down_proj) and its production path (L1 gate/up in the FP8 edge band) — verified by direct scan, not assumed. One looped-arch novelty from the scan: the spike is pass-asymmetric (26,752 on loop pass 1 of 2; 1,352 on pass 2).

Quality evals (RTX 5090, vLLM v0.25.1, 64k ctx, fp8 KV; champion = my FP8-Dynamic quant)

benchmodebf16 originalFP8-Dynamic**this repo**
GSM8K strict (n=100)thinkingnot measured8989
GSM8K flexiblethinkingnot measured9396
IFEval prompt-strict (n=250)non-thinkingnot measured76.476.0
IFEval inst-strictnon-thinkingnot measured83.583.3
MMLU-Pro (25/category)non-thinkingnot measured62.664.9
BBH CoT few-shotnon-thinkingnot measured64.959.5
MultiHop-RAG (gold evidence, n=248)non-thinkingnot measured74.274.6
Blind-judge summarization (closed, same-judge pair, n=46)non-thinkingn/c (judged in a separate pass; scores only comparable within a pass)4.574.41 (coverage −0.24, ~1.5σ)
Judged faithfulness (closed)non-thinkingn/c4.904.87
Judged fabrication / leaks (closed)non-thinking0% / 0%2% / 0%2% / 0%
Dictation-rewrite taxonomy (closed)non-thinking18/2018/2017/20
JSON parse rate (closed, /48)non-thinking444246

The trade: reasoning at full parity, best-in-family structured-output reliability, small summarization-coverage cost. If you want maximum quality use my FP8-Dynamic; if you want the smallest artifact that keeps reasoning intact on this architecture, use this one.

Speed (RTX 5090, batch-1, vLLM v0.25.1, 64k ctx, fp8 KV)

Decode tok/s, single stream, per-workload best speculative config:

workloadspec decodebf16FP8-Dynamic**this repo**
freeform / chat / agentoff96154159
summarize / RAG (2k+ ctx prompts)ngram, 8 tok136206202

Two workload anchors, not an ISL sweep; decode speed shifts with context length, batch size, and attention backend. The mid-MLP NVFP4 weights serve via the Marlin W4A16 kernel; the FP8 tensors via the FP8 path; the small freeform edge over FP8-Dynamic comes from the lighter weight reads, the small summarize deficit from mixed-kernel overhead under the ngram verify batch.

Serving (vLLM)

Arch not yet upstream (vLLM PR #49433); install the bundled plugin first:

bash
pip install --no-deps ./vllm_plugin
vllm serve <this-repo> --trust-remote-code \
  --max-model-len 65536 --kv-cache-dtype fp8 \
  --reasoning-parser qwen3 --enable-auto-tool-choice --tool-call-parser qwen3_xml

Thinking/sampling notes as in the base model: thinking ON by default (chat_template_kwargs.enable_thinking=false to disable), T=0.6/topp=.95/topk=20 defaults ship in generation_config.json, T=1.0 for agentic use.

Download just this artifact:

bash
hf download NullSense/Nanbeige4.2-3B-NVFP4-FP8-LoopShield --local-dir Nanbeige4.2-3B-NVFP4-FP8-LoopShield

Creation (llmcompressor, data-free)

python
g_fp8 = dict(FP8_DYNAMIC)
g_fp8["targets"] = ["re:.*self_attn\\.q_proj.*", "re:.*self_attn\\.k_proj.*",
                    "re:.*self_attn\\.v_proj.*", "re:.*self_attn\\.o_proj.*",
                    "re:.*down_proj.*"] + \
                   [f"re:model\\.layers\\.{i}\\.mlp\\.(gate|up)_proj.*" for i in (0,1,2,19,20,21)]
g_fp4 = dict(NVFP4A16)
g_fp4["targets"] = [f"re:model\\.layers\\.{i}\\.mlp\\.(gate|up)_proj.*" for i in range(3,19)]
QuantizationModifier(config_groups={"group_0": g_fp8, "group_1": g_fp4}, ignore=["lm_head"])

GPTQ/AWQ were NOT usable on this architecture in llmcompressor 0.12: GPTQ's Hessian inversion fails on all 154 modules (root cause unknown — the double-fire hook was checked and is not the cause); AWQ lacks arch mappings. Reported upstream: #2952, #2953.

Limitations

  • vLLM-only until PR #49433 merges. Bundled modeling_nanbeige.py carries two one-line transformers-5 compat patches (rope key, tied-weights type).
  • W4A4 config-variant possible (same bytes) but NOT recommended: batch-1 decode is faster via the Marlin W4A16 path on consumer Blackwell, and activation quantization is the looped arch's worst failure mode.
  • English-only evals; n=100/46 — directional, not leaderboard-grade.

Which artifact should I choose?

Quality across benchmarks

Quality vs size

Decode speed per workload

artifactsizetok/s (freeform / summ)pick when
FP8-Dynamic4.9 GB154 / 206default: no measured quality loss on any gate. Recommended.
NVFP4-FP8-LoopShield (this repo)4.5 GB159 / 202smallest artifact that keeps reasoning at FP8 parity; best JSON reliability. Recommended for tight VRAM.
NVFP4A163.6 GB175 / 220fastest; summarization/extraction only (reasoning drops 8 GSM8K points). Not for math/agentic.
EAGLE3 draft+1.5 GB+12-41% decodeadd-on speculator for any of the above; thinking-aware retrain (2026-07-24), thinking-mode acceptance 0.41, lossless. Serve with TRITON_ATTN.

All three serve identically (same plugin, same flags); only the checkpoint differs.

Comparison chain: the columns here use my FP8-Dynamic quant as reference; the FP8 card carries the bf16-original matrix linking the chain back to the unquantized model.

Links & provenance

Benchmark provenance (ordered: public-harness first, then my closed harnesses)

Public, reproducible (lm-eval-harness local-chat-completions, exact configs in each row's annotation):

  1. 1.GSM8K — grade-school math, the reasoning gate (thinking mode, n=100, max_tokens 8192)
  2. 2.IFEval — verifiable instruction following (non-thinking, n=250)
  3. 3.MMLU-Pro — 10-choice knowledge/reasoning (non-thinking, 25/category)
  4. 4.BBH — hard reasoning suite, CoT few-shot (non-thinking, 15/subtask)
  5. 5.MultiHop-RAG — multi-doc news QA; I run generator-only with gold evidence (custom harness, dataset public)

Closed/personal harnesses (not publicly reproducible — my own serving-workload gates; treat as relative signals between artifacts in THIS family, not cross-model scores):

  • Blind-judge summarization — 48 stratified real articles, per-article anonymized+shuffled candidates, single LLM judge scoring faithfulness/coverage/fabrication. Tests: does the quant change long-form grounded generation quality?
  • Rewrite taxonomy — 20 dictation-cleanup cases from a production ASR pipeline. Tests: instruction-constrained short-form editing.
  • JSON parse rate — structured-output emission over the summarization set. Tests: format discipline under quantization.

Citation

bibtex
@misc{peciukonis2026nanbeige42loopshield,
  author       = {Pe{\v{c}}iukonis, Matas (NullSense)},
  title        = {NVFP4-FP8-LoopShield: loop-aware mixed-precision NVFP4 quantization of Nanbeige4.2-3B},
  year         = {2026},
  howpublished = {Hugging Face},
  url          = {https://huggingface.co/NullSense/Nanbeige4.2-3B-NVFP4-FP8-LoopShield},
  note         = {Placement recipe recovering GSM8K 81->89 on a looped/weight-shared LLM; first FP4-family results for the architecture class.}
}