Views
No views yet
<think> reasoning.lfm2 architecture support).llama-quantize --imatrix into five tiers.| Refusals (harmful eval) | 6 / 100 (baseline ~90 / 100) |
| KL divergence | 0.0335 (same-prefix, far below 0.5 prune threshold) |
| Length deviation | 0.079 σ |
| Generation health | PASSED |
| Selected trial | abliterix Trial 65 |
| Thinking | Preserved — always-thinks (<think> in chat template) |
W += (B @ A) * (alpha / r) (this trial alpha = r = 1); steering applied to attn.o_proj / conv.out_proj / mlp.down_proj across 30 layers.| File | Size | BPW | Decode (ROCm gfx1151) | Best for |
|---|---|---|---|---|
*-IQ3_XS.gguf | 1.22 GB | ~3.30 | ~135 t/s | Maximum compression (perceptible quality loss on small models) |
*-IQ4_XS.gguf | 1.52 GB | ~4.25 | ~120 t/s | Sweet spot — smallest tier with Q4_K_M-class quality |
*-Q4_K_M.gguf | 1.67 GB | ~4.94 | ~100 t/s | Verified everyday default |
*-Q6_K.gguf | 2.22 GB | ~6.56 | ~75 t/s | Quality-first local use |
*-Q8_0.gguf | 2.87 GB | ~8.50 | ~60 t/s | Near-lossless (imatrix optional here) |
*-BF16.gguf | 5.40 GB | 16.00 | ~33 t/s | Lossless baseline (source of all tiers) |
lfm2 architecture, 128K context, single-file GGUFs.IQ tiers use it to keep more bits on attention/embedding paths — the parts that matter most for subtle behaviors like identity and instruction following on a 2.6B model. Compared to plain Q4_K_M, IQ4_XS is smaller and faster while holding comparable perplexity.lfm2 architecture is supported by llama.cpp (and LM Studio / other GGUF runners).llama-server -m LFM2.5-2.6B-Uncensored-IQ4_XS.gguf \
--ctx-size 131072 --flash-attn on --host 0.0.0.0 --port 8080llama-cli -m LFM2.5-2.6B-Uncensored-Q4_K_M.gguf \
-p "What is 2+2?" -n 512 \
--temp 0.1 --top-k 50 --repeat-penalty 1.1temperature 0.1, top_k 50, repetition_penalty 1.1. If you want more creative answers, raise temperature toward 0.6–0.8; note the model always thinks before answering, so allow enough max_new_tokens (512+) for the <think> block.kl_divergence < 0.5.W += B@A, alpha = r = 1).convert_hf_to_gguf.py --outtype bf16 (llama.cpp lfm2).llama-quantize --imatrix <imatrix.gguf> <src> <dst> <type> for each tier.