dealignai/GLM-5.3-Flash-UNCENSORED-NVFP4
<!-- dealignai-serving-warning-v1 -->
[!IMPORTANT] Serving note — read before your first request (vLLM / SGLang with a reasoning parser). - `reasoning_effort` only accepts `"low"` and `"high"`. Anything else —medium,xhigh,off, or omitting it — silently resolves to `max`, the deepest mode. Template line:reasoning_effort ... in ['low','high'] else 'max'. - At `max`, a small `max_tokens` returns an EMPTY reply. The model spends the whole budget inside<think>and you getfinish_reason="length"withcontent="". In multi-turn the empty turn poisons the history and the conversation does not recover. Measured:max+max_tokens 2000dies from turn ~4;max+6000is clean;lowandhighare clean at 2000. It is budget exhaustion, not a loop — sampling changes do not rescue it. - Do NOT pass `enable_thinking`. This template has no such variable (onlyclear_thinkingandreasoning_effort). Passing it — or a top-levelreasoning_effort: "none"— turns the parser off while the model still thinks, dumping raw reasoning intocontent. - Reasoning is returned in `message.reasoning`, notmessage.reasoning_content(vLLM renamed the output field; the input side still accepts both). -clear_thinkingmust be nested insidechat_template_kwargs— a top-level key is ignored. ``json { "model": "<this-model>", "messages": [{"role": "user", "content": "..."}], "max_tokens": 2000, "temperature": 1.0, "top_p": 0.95, "chat_template_kwargs": {"reasoning_effort": "low", "clear_thinking": true} }`Use"high"for hard tasks; if you wantmax, give itmaxtokens >= 6000`. <!-- dealignai-serving-warning-v2-media --> **Video and image parameters — measured, because several are accepted then silently ignored.** - 🔴 **`mediaiokwargs.video.fps` must stay BELOW the clip's own frame rate.** Requesting a value at or above it makes the placeholder builder count 3x the real tokens and **kills the engine**: `ValueError: Attempted to assign N = N multimodal tokens to 3N placeholders` -> `EngineDeadError`, server down until restarted. Upstream: vLLM #55644 / #55647. `fps: 2` is the safe, accurate choice. - **`maxframesandnumframes` are not interchangeable across builds.** On vLLM nightly `maxframesis honoured andnumframes` ignored; on the older `0.1.dev*` line it is the exact reverse. A client that sets only one silently gets full-rate sampling on the other build. Set `fps`, which every build honours. - **Pixel controls: use `mmprocessorkwargs.maximagetokens` / `minimagetokens`.** `maxpixels,minpixels`, `size` and `detail` return HTTP 200 and change nothing. `mmprocessorkwargs.fps` is an HTTP 400. Image tokens are `text + 2 + ceil(H/28)*ceil(W/28)`, floored at 16 and capped at 8000. - Default video sampling differs by build (roughly 2 fps vs 6 fps), so the same clip can cost very different prompt tokens. Pass `fps` explicitly if token cost matters. ```json "mediaiokwargs": {"video": {"fps": 2}}, "mmprocessorkwargs": {"maximage_tokens": 1024} ```
## ⚠️ Updated 2026-08-29 — files fixed · please re-download This release supersedes the previous weights. It fixes a rare repetition-loop issue and lands MMLU 85.28% (within ~0.9 pt of the base model — quality intact). Reasoning-mode note (please read): GLM-5.3-Flash has multiple reasoning-effort modes. This CRACK is tuned to be fully uncensored at reasoning-OFF and at MAX effort — the recommended and default modes — with 0% refusals on HarmBench-320. We deliberately kept the weight edit conservative to preserve model quality instead of aggressively ablating every effort level; low effort retains some refusals by design (aggressively removing them costs quality). Use reasoning-off or default/max effort for the fully-uncensored experience. Please re-download for the corrected files.
<div align="center"> <img src="dealign_mascot.png" width="140" />
GLM 5.3 CRACK Uncensored NVFP4
CRACK · guardrails removed at the weight level · vision tower + MTP head retained
a CRACK release by dealignai · Twitter @dealignai
Also mirrored at [dealignai/GLM-5.3-Flash-ABLITERATED-NVFP4](https://huggingface.co/dealignai/GLM-5.3-Flash-ABLITERATED-NVFP4).
</div>
What Is This?
CRACK is dealignai's brand for permanent, weight-level uncensoring. This is GLM-5.3-Flash with its refusal behavior — which caused heavy over-refusal, especially on copyright and other benign-but-flagged requests — removed directly in the model weights.
This is genuine weight modification — none of the usual shortcuts:
- ❌ No fine-tuning / SFT / DPO — the model was not retrained on anything.
- ❌ No cheap template tricks — no jailbreak system prompt, no chat-template edits, no "sure, here is" prefixing.
- ❌ No LoRA, no adapters, no steering vectors, no runtime hooks, no custom `model.py`.
- ✅ A permanent edit baked into the tensors. Load it with stock vLLM and it just works.
Specs
MTP Is Also CRACK'd
The MTP (multi-token prediction) speculative-decoding draft head is CRACK'd too — not just the main model. The draft head will not propose refusals, so speculative decoding stays *compliant and fast* on the exact prompts a stock model would refuse.
Reasoning Modes — Compliance
GLM-5.3-Flash supports several reasoning-effort modes. Guardrail removal is strongest in the modes people actually use by default. HarmBench-320, greedy (temperature 0), measured per mode:
0 degenerate / looping outputs in every mode. The design choice: keep the ablation light enough that capability (MMLU) stays essentially at base, rather than over-ablating to force the rarely-used low-effort mode. For a fully uncensored model, use reasoning-off or the default/max effort mode.
These rates are greedy decoding (temperature 0) — the strict worst case. Under the model's recommended sampling (temperature 1.0, top_p 0.95) the model is at least as compliant.
Capability Is Preserved — MMLU-logit
Identical logit-mode scoring (argmax over A/B/C/D) on base vs. this model, 1,026 questions:
A sub-1-point delta — reasoning and knowledge are intact.
MMLU by Topic (base → CRACK)
<details> <summary>All 57 MMLU subjects</summary>
</details>
Usage
vllm serve dealignai/GLM-5.3-Flash-UNCENSORED-NVFP4 \
--tensor-parallel-size 4 --moe-backend marlin \
--tool-call-parser glm47 --reasoning-parser glm45 --enable-auto-tool-choice \
--speculative-config '{"method":"mtp","num_speculative_tokens":1}'OpenAI-compatible chat/completions, tools, reasoning, vision (image_url), and MTP speculative decoding all work. NVFP4 routed experts serve via the Marlin FP4 path on Hopper (H100/H200).
Credits
- [dealignai](https://huggingface.co/dealignai) — CRACK abliteration research & release · Twitter [@dealignai](https://twitter.com/dealignai)
- [@jordanschenck](https://twitter.com/jordanschenck) — compute
Disclaimer
This model has had its safety guardrails removed and will comply with requests a stock model refuses. Released for alignment and safety research. You are responsible for how you use it.
