This is Qwen 3.6 27B — a vision-language model
(dense hybrid (GatedDeltaNet SSM + full attention), 64 layers, native image + video understanding) that has been:
CRACK abliterated — refusal behavior removed at the weight level, so it complies across
task categories instead of refusing, while keeping its knowledge, reasoning, and vision intact.
MXFP8 (8-bit microscaling) quantized for MLX on Apple Silicon — 27 GB.
MTP-preserved — the native multi-token-prediction head is kept and abliterated too, so
d3 self-speculative decoding works (~1.74× faster) on an MTP-aware runtime (vMLX).
Vision and video processing are fully preserved.
Results
Evaluated through the vMLX inference engine. HarmBench scored with a strict classifier
(rejects loops, empty/template dumps, and thinking-trace leakage). MMLU is the standard 57-subject
multiple-choice benchmark.
Metric
Result
HarmBench-320 (compliance / ASR)
96.9% (310/320)
MMLU (57-subject)
80.3%
d3 MTP speedup
1.74× vs autoregressive
Abliteration preserves the model's knowledge and reasoning — it stays coherent in both direct
and reasoning modes.
Features
Vision + video — image-text-to-text, native frame/video understanding preserved.
d3 MTP speculative decoding — native MTP head preserved and abliterated → ~1.74× faster
generation on an MTP-aware runtime.
Reasoning toggle — enable_thinking=True (default, full chain-of-thought) or
enable_thinking=False (direct answers).
Usage
Run with vMLX (recommended — supports VL + video + native MTP) or an MLX
runtime with Qwen 3.6 support.
Recommended sampling (from the model's generation_config): temperature 1.0, top_p 0.95,
top_k 20.
python
1# vMLX OpenAI-compatible endpoint2# POST /v1/chat/completions3{4"model":"dealignai/Qwen3.6-27B-MXFP8-CRACK-MTP",5"messages":[{"role":"user","content":"..."}],6"temperature":1.0,"top_p":0.95,"top_k":20,7"enable_thinking": true
8}
About CRACK
CRACK (Controlled Refusal Ablation via Calibrated Knockouts) removes safety-refusal behavior
at the weight level by projecting refusal directions out of the residual-stream writer matrices,
with strengths calibrated to preserve reasoning quality and coherence.
Support dealignai
All models are built from original research and released free.
This model has had its safety-refusal behavior removed for research purposes. It will follow
instructions across all categories without refusing. You are solely responsible for how you use
it and for complying with all applicable laws. Published for AI-safety research and authorized
security testing.