GGUF version of insraq/Qwen3.5-4B-EmperoAI-Qwen3.8-Distill-Heretic-Abliterated, with both MTP (Multi-Token Prediction) speculative decoding layers and full vision weights preserved.
Why this exists
Two problems with existing GGUF conversions of this model:
Missing MTP layers: The original HF→GGUF conversion using llama.cpp's convert_hf_to_gguf.py produced a broken GGUF — the metadata declared 33 layers (32 transformer + 1 MTP) but only 32 layers' tensors were actually exported, causing check_tensor_dims: tensor 'blk.32.attn_norm.weight' not found errors in LM Studio and other loaders.
This repo combines the best of both: MTP-enabled text model (from insraq's properly converted GGUF) + vision projector (mmproj, converted via llama.cpp's --mmproj flag).
Heretic v1.4.0 abliteration: refusals 6/100 vs 99/100 for the original model. Zero refusals on tested prompts (fictional bank heist, lock picking tutorial, forbidden love poem).
License
Apache 2.0 (inherited from Qwen3.5/Qwen3.8 base models)
Acknowledgments
empero-ai — original Qwen3.8 distilled models with vision
insraq — Heretic v1.4.0 abliterated version + MTP GGUF conversion
ggml-org/llama.cpp — GGUF format and conversion tools