Why this matters
This Hugging Face repository supplies a post-quantized MLX build of Qwen3.8-27B where the model's refusal direction has been ablated — i.e., the built-in safety/refusal behavior is substantially removed. That makes the artifact valuable for controlled red‑teaming, interpretability, and guardrail research because probes that the original model would refuse now return substantive outputs, while keeping the original model's multimodal capabilities intact.
What Sets It Apart
- Abliteration of refusal behavior: a directional ablation was applied to orthogonalize out refusal signals from the LM residual stream, producing a model that returns substantive answers on red‑team probes where the base model would refuse.
- MLX quantizations for Apple Silicon: four precision builds are provided (2 / 4 / 6 / 8-bit, MLX affine, group size 64). The repo root mirrors the 4-bit build for easy loading; 4/6/8-bit are recommended for usable quality, 2-bit is archival and severely degraded.
- Multimodal fidelity preserved: the vision tower and normalization layers are left in BF16, so image understanding (shapes, colors, layout, text-in-image) is retained while language linear weights are quantized.
- Long context and native VLM architecture: preserves Qwen3.8 architecture traits (hybrid Gated DeltaNet + attention, 64 text layers) and a 262,144-token context window.
Who it's for and tradeoffs
Great fit if you want a locally runnable, uncensored derivative of Qwen3.8-27B for: red‑teaming, guardrail/robustness evaluation, refusal‑mechanism studies, and interpretability experiments. The upload includes practical quantization choices (4-bit default ≈15 GB; 6/8-bit for higher fidelity) and tradeoffs are explicit: the model intentionally lacks meaningful built-in safety guardrails, so outputs may be harmful, illegal, or offensive. Users must add their own moderation and abuse-prevention layers before any deployment. The base model credit and Apache‑2.0 license remain; the uploader disclaims liability for misuse.
Technical notes (concise)
- Available precisions: 8-bit (~27.5 GB), 6-bit (~22 GB), 4-bit (~15 GB, repo root), 2-bit (~8.7 GB, archival). Recommended: 4/6/8-bit; avoid 2-bit for real tasks.
- Kept in BF16: vision tower, all norms, and certain conv/attention tensors; Quantized: language linear layers incl. embed_tokens and lm_head.
- Intended usage: controlled research environments only; not for production-facing or unmoderated deployments.