Views
No views yet
zaakirio/LFM2.5-8B-A1B-Uncensored,
a decensored (Heretic-abliterated) version of
LiquidAI/LFM2.5-8B-A1B.Requires a recent llama.cpp build with LFM2 MoE support. This model uses thelfm2moearchitecture (hybrid short-conv + attention with 32 experts, 4 active per token). Only llama.cpp builds that includeLfm2MoeForCausalLMsupport can load these files. Use a current release (or current Ollama / LM Studio). Older builds will fail with an "unknown architecture 'lfm2moe'" error.
| File | Quant | Size | BPW | Notes |
|---|---|---|---|---|
LFM2.5-8B-A1B-Uncensored-Q2_K.gguf | Q2_K | 3.0 GB | 3.01 | Smallest; significant quality loss but works on very constrained hardware. |
LFM2.5-8B-A1B-Uncensored-Q3_K_S.gguf | Q3_K_S | 3.5 GB | 3.54 | Small, lower quality. |
LFM2.5-8B-A1B-Uncensored-Q3_K_M.gguf | Q3_K_M | 3.9 GB | 3.87 | Small; some quality loss. |
LFM2.5-8B-A1B-Uncensored-IQ4_XS.gguf | IQ4_XS | 4.3 GB | 4.25 | Smaller than Q4_K_S with comparable quality; uses iquant scheme. |
LFM2.5-8B-A1B-Uncensored-Q4_K_S.gguf | Q4_K_S | 4.6 GB | 4.59 | Slightly smaller than Q4_K_M. |
LFM2.5-8B-A1B-Uncensored-Q4_K_M.gguf | Q4_K_M | 4.9 GB | 4.85 | Recommended — best size/quality balance for most users. |
LFM2.5-8B-A1B-Uncensored-Q5_K_S.gguf | Q5_K_S | 5.5 GB | 5.49 | Higher quality. |
LFM2.5-8B-A1B-Uncensored-Q5_K_M.gguf | Q5_K_M | 5.7 GB | 5.69 | Higher quality, marginally larger. |
LFM2.5-8B-A1B-Uncensored-Q6_K.gguf | Q6_K | 6.5 GB | 6.56 | Near-lossless. |
LFM2.5-8B-A1B-Uncensored-Q8_0.gguf | Q8_0 | 8.4 GB | 8.50 | Effectively lossless vs the BF16 source. |
LFM2.5-8B-A1B-Uncensored-BF16.gguf | BF16 | 16 GB | 16.00 | Full precision, identical numerics to the source HF model. |
1# Interactive chat — downloads the chosen quant automatically
2llama-cli -hf zaakirio/LFM2.5-8B-A1B-Uncensored-GGUF:Q4_K_M
3
4# OpenAI-compatible server
5llama-server -hf zaakirio/LFM2.5-8B-A1B-Uncensored-GGUF:Q4_K_M -c 4096llama-cli -m LFM2.5-8B-A1B-Uncensored-Q4_K_M.gguf -p "Hello, who are you?"ollama run hf.co/zaakirio/LFM2.5-8B-A1B-Uncensored-GGUF:Q4_K_Mzaakirio/LFM2.5-8B-A1B-Uncensored-GGUF in the in-app model browser,
or download a .gguf file from this page and load it.1pip install -U "huggingface_hub[cli]"
2hf download zaakirio/LFM2.5-8B-A1B-Uncensored-GGUF \
3 --include "LFM2.5-8B-A1B-Uncensored-Q4_K_M.gguf" --local-dir ./<|startoftext|><|im_start|>system
{system_prompt}<|im_end|>
<|im_start|>user
{prompt}<|im_end|>
<|im_start|>assistantLFM2.5-8B-A1B:| Metric | Decensored | Original |
|---|---|---|
| Refusals (/100 harmful prompts) | 0 | 0 |
| KL divergence (harmless prompts) | 0.0481 | 0 (by definition) |
LFM2.5-8B-A1B measured 0–2 / 100 refusals on Heretic's marker-based
detector (compared to ~98 / 100 for its smaller sibling), suggesting it is
comparatively compliant out of the box. The abliteration still makes real,
measurable changes to the attention and dense MLP projections (KL ≈ 0.05).zaakirio/LFM2.5-8B-A1B-Uncensored (BF16) using llama.cpp convert_hf_to_gguf.py + llama-quantize.