Views
No views yet
huihui-ai/Huihui-Qwen3.8-27B-abliterated and Qwen/Qwen3.8-27B,
extracted as a rank-64 LoRA and energy-pruned from 6.1 GB → 203 MB (bf16) / 108 MB (q8_0 GGUF).linear_attn.out_proj × 36, mlp.down_proj × 49, self_attn.o_proj × 13.
Zero-diff modules, the vision tower and full-rank embed/lm_head weights were pruned away.| path | what it is | size |
|---|---|---|
lora/ | PEFT adapter (transformers / vLLM), bf16, r=64, alpha=64 | 203 MB |
gguf/huihui-slim-lora-q8_0.gguf | LoRA-GGUF for llama.cpp runtime mounting (--lora) | 108 MB |
gguf/huihui-slim-lora-bf16.gguf | lossless bf16 LoRA-GGUF (verification baseline) | 203 MB |
general.architecture = qwen35), e.g.
ggml-org/Qwen3.8-27B-GGUF or any of your own quants:1llama-server -m Qwen3.8-27B-Q8_0.gguf \
2 --lora-scaled gguf/huihui-slim-lora-q8_0.gguf:0.1 \
3 -ngl 99 -c 16384 --jinja| scale | effect |
|---|---|
0.1 (recommended starting point) | light touch, behavior stays close to the base |
0.5 | moderate |
1.0 (plain --lora FILE) | full-strength abliteration |
--lora-scaled a.gguf:0.5,b.gguf:1.0.⚠️ If you get garbage output ((begin-#: (begin, ...), first verify the base file is really Qwen3.8-27B:llama-gguf info <file> | grep -E "architecture|name".
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3.8-27B", torch_dtype="auto")
5model = PeftModel.from_pretrained(base, "sunnyyy/qwen38-27b-huihui-slim-lora/lora") # or local pathout_proj)