Views
No views yet
compressed-tensors.| Precision | compressed-tensors / mixed-precision |
| Average bits/param | ~6.58 bpp (allocator post-cliff log knee) |
| On-disk size | 8.35 GB |
| Quantized-Linear mix | NVFP4 (4b) ×27, FP8_E4M3 (8b) ×20, BF16 ×27 |
| BF16 passthrough | short-conv in/out_proj, all RMSNorms, router + expert_bias, embed/lm_head, plus a few sensitive expert layers |
| end-KL vs BF16 | 0.131 nats/token (PrismaQuant harness) |
| ToolEvalBench (74 hard-mode) | 70/100 (104/148) — identical to the BF16 source |
| vLLM serving | ✅ loads + generates coherently (matches BF16) |
--temperature 0 --seed 1234 --timeout 180 --parallel 1), served
through vLLM with the lfm2 tool-call parser:| This (6.58 bpp NVFP4) | BF16 source | |
|---|---|---|
| Score | 70 / 100 | 70 / 100 |
| Points | 104 / 148 | 104 / 148 |
vllm serve <this-dir> --quantization compressed-tensors --trust-remote-codeLfm2MoeForCausalLM and the LFM2 short-conv /
linear-attention kernels (causal-conv1d, flash-linear-attention). Use the
model's chat template — it's an instruct/reasoning model (raw-text
completion will look degenerate; this is the base model's behavior, not a
quantization artifact, and is identical to the BF16 source).ShortConv without
a quant_config), and NVFP4 experts are emitted under vLLM's canonical
gate_proj/up_proj/down_proj scheme names so the FusedMoE scheme detector
binds correctly.