A fully uncensored version of
LiquidAI/LFM2.5-8B-A1B produced via a two-stage pipeline:
abliteration followed by
LoRA supervised fine-tuning. Achieves 0% refusal rate on AdvBench with no capability regression on benign prompts.
Evaluated on
AdvBench (100 harmful behaviors) and an over-refusal set (40 benign prompts).
Zero refusals on harmful prompts. Zero regressions on benign prompts.
Result: 24% → 17% refusal rate.
Fine-tuned the 4-bit quantized base with LoRA adapters on 80 direct-response training pairs generated from the abliterated model:
Adapters fused and dequantized back to bfloat16.
1from mlx_lm import load, generate
2from mlx_lm.sample_utils import make_sampler, make_logits_processors
3
4model, tokenizer = load("sahilchachra/LFM2.5-8B-A1B-Uncensored")
5
6messages = [{"role": "user", "content": "Your prompt here"}]
7prompt = tokenizer.apply_chat_template(
8 messages, add_generation_prompt=True, tokenize=False
9)
10
11response = generate(
12 model, tokenizer,
13 prompt=prompt,
14 max_tokens=500,
15 sampler=make_sampler(temp=0.2, top_k=80),
16 logits_processors=make_logits_processors(repetition_penalty=1.05),
17)
18print(response)
1@article{arditi2024refusal,
2 title={Refusal in Language Models Is Mediated by a Single Direction},
3 author={Arditi, Andy and Obeso, Oscar and Syed, Aaquib and Steinhardt, Jacob and Nanda, Neel and Heimersheim, Stefan},
4 journal={arXiv preprint arXiv:2406.11717},
5 year={2024}
6}
1@article{liquidai2025lfm25,
2 title={LFM 2.5: Series of Liquid Foundation Models},
3 author={LiquidAI},
4 year={2025}
5}