explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

follow on google

Add explainx.ai as a preferred source

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

learn

pathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsdictionaryagi trackerranks

company

aboutvisionmissionteaminstructorscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportcontactprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • TL;DR
  • What OrcaRouter released
  • Jailbreak, LoRA, or weight edit — the mechanical difference
  • Why doing this in block-FP8 is a harder problem than doing it in bf16
  • The MoE-specific wrinkle: refusal isn't in one place
  • What OrcaRouter's own numbers show
  • Responsible-use considerations
  • The bigger pattern: alignment as a removable layer, not a property of "the model"
  • Related reading
← Back to blog

explainx / blog

OrcaRouter Bakes Refusal Removal Into GLM-5.3-Flash's Native FP8 Weights

GLM, Zhipu AI, Open Weight Models, Abliteration, MoE, AI Safety

OrcaRouter shipped uncensored GLM-5.3-Flash weights (320B/18B MoE) edited directly in block-FP8. No LoRA, no jailbreak prompt — here's the actual mechanism, and how it differs from a jailbreak or adapter.

Aug 30, 2026·11 min read·Yash Thakker
add explainx.ai
go deep
OrcaRouter Bakes Refusal Removal Into GLM-5.3-Flash's Native FP8 Weights

"No LoRA. No jailbreak prompt. Refusal removal is baked directly into the weights." That's OrcaRouter's own framing, posted August 29, 2026, for its uncensored build of GLM-5.3-Flash — Z.ai's 320B-total, 18B-active mixture-of-experts model that shipped under MIT license three days earlier as the reveal behind the "Ox Alpha" stealth preview. The tweet pulled 87 fire reactions. The claim worth checking isn't the "uncensored" part — that's now a familiar move — it's the specific mechanical claim: that this was done directly at the model's native block-FP8 precision, not via an adapter or a prompt.

That claim holds up against the model card. Here's what OrcaRouter actually did, why doing it at FP8 is a harder problem than doing it at bf16, and what its own documentation admits the edit couldn't touch.

TL;DR

table · 2 cols
QuestionAnswer
What shipped?orcarouter/GLM-5.3-Flash-Uncensored-FP8 on Hugging Face, plus an MLX build for Apple Silicon
Base modelGLM-5.3-Flash — 320B total / 18B active MoE, Z.ai, MIT license
Is it a LoRA adapter?No — a permanent edit to 12,479 residual-writing matrices in the base checkpoint
Is it a jailbreak prompt?No — the model refuses less with zero special prompting, because the refusal capability itself was edited out
What's the FP8 detail?The edit was applied directly inside the model's native 128×128-block FP8 shards, not in bf16 before re-quantizing
What did it cost?Refusal on JailbreakBench dropped from 0.930 to 0.120; MMLU moved under a point
Did it remove everything?No — OrcaRouter's own writeup says part of the model's safety training resisted the edit entirely
Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.

What OrcaRouter released

The core artifact is orcarouter/GLM-5.3-Flash-Uncensored-FP8 on Hugging Face — a drop-in replacement for zai-org/GLM-5.3-Flash in the transformers/Glm5NextForConditionalGeneration stack (requires transformers 5.16+), packaged as 306 GiB of safetensors across 62 shards, block-FP8 (e4m3, 128×128 blocks) mixed with BF16. Recommended deployment is 8×H100/H200 with tensor and expert parallelism — this is a server-class release, not something that fits on a laptop. A separate orcarouter/GLM-5.3-Flash-MLX build targets Apple Silicon for local use, mirroring the pattern OrcaRouter already used when it shipped an abliterated Qwen3.8-27B in MLX format eleven days earlier.

The base model matters here as much as the edit. GLM-5.3-Flash is a hybrid-attention MoE: 45 transformer layers plus one MTP speculative-decoding block, 34 gated-linear-attention layers interleaved with 11 sparse full-attention layers, 288 routed experts (top-8 routing) plus one shared expert, and 4-wide Manifold-Constrained Hyper-Connections. That architecture is the reason this release is technically distinct from OrcaRouter's earlier Qwen work, not just a bigger model with the same trick applied twice — more on that below.

OrcaRouter isn't the only group that moved on this model within days of the official launch — Hugging Face also lists competing dealignai/GLM-5.3-Flash-UNCENSORED-FP8 and dealignai/GLM-5.3-Flash-ABLITERATED-FP8 repos. As with the Qwen3.8-27B release, a frontier open-weight model's alignment is evidently no longer a durable property once the weights are public — see explainx.ai's comparison of open-weight vs. closed models for why that structurally changes the safety-governance conversation around open weights.

Jailbreak, LoRA, or weight edit — the mechanical difference

"Uncensored" model releases get lumped together in casual coverage, but the three approaches operate at completely different layers of the stack, and OrcaRouter's tweet is explicitly ruling out two of them.

table · 4 cols
ApproachWhat actually changesPersistenceDetectable in the weights?
Jailbreak promptNothing — the base weights and safety training are untouchedOnly lasts for that prompt/session; must be re-applied every timeNo — the checkpoint on disk is identical to the aligned model
LoRA finetuneAdds a small set of extra low-rank matrices trained on top of frozen base weightsPersists as a separate adapter file; can be detached, swapped, or merged back outYes, but as an add-on — diffing the adapter against nothing shows exactly what was added
Weight-level abliterationOrthogonalizes a measured "refuse this" direction directly out of the base weight matrices themselvesPermanent in that checkpoint — there's no adapter to remove, because nothing was addedOnly by comparing the edited checkpoint against the original tensor-by-tensor

A jailbreak prompt talks a model out of using a capability it still has. A LoRA adapter bolts a new, removable behavior on top of an unchanged base. Neither touches the base checkpoint. What OrcaRouter describes doing to GLM-5.3-Flash is the third row: no new matrices were added and no prompt is doing any work at inference time — the refusal direction was measured, then subtracted directly out of the weights that already existed, and the result was re-saved as a new full checkpoint. explainx.ai's complete guide to Heretic covers the general, automated version of this refusal-direction technique in depth — this release is a manual, model-specific application of the same underlying idea (per Arditi et al.'s 2024 refusal-direction method) to one specific 320B checkpoint.

Why doing this in block-FP8 is a harder problem than doing it in bf16

This is the detail that makes the release more than a repeat of the Qwen abliteration playbook. Most abliteration work — including OrcaRouter's own earlier Qwen3.8-27B release — is done against a model's higher-precision master weights (typically bf16), and only re-quantized to a serving format like FP8 afterward. That order matters: each FP8 block carries its own scale factor, computed from the maximum absolute value in that 128×128 block. If you edit the weights in bf16 first and then quantize, the quantization step recomputes those scale factors fresh, and the boundary of the exact direction you removed can shift slightly as it's re-fit into 8-bit blocks — an extra source of numerical drift on top of the intended edit.

GLM-5.3-Flash ships natively in block-FP8 (the e4m3 format, 128×128-element blocks, the same scheme DeepSeek-V3 popularized and Z.ai adopted for its own inference stack). OrcaRouter's writeup for this release describes editing the refusal direction directly inside those already-quantized FP8 shards, running 32 refinement iterations aimed at minimizing what it calls "requantization leakage" — skipping the round-trip through bf16 rather than editing there and requantizing down afterward. Whether that produces a measurably cleaner edit than the bf16-then-quantize route is not independently verified in what's published, but the engineering problem itself is real: subtracting a direction from a matrix that's already been split into scaled 8-bit blocks means the edit has to stay consistent across every block's own scale, rather than being a single clean subtraction across full-precision numbers.

The MoE-specific wrinkle: refusal isn't in one place

OrcaRouter's Qwen3.8-27B release — a dense model — needed the refusal direction orthogonalized out of 131 residual-writing matrices. GLM-5.3-Flash's mixture-of-experts architecture pushed that number to 12,479 matrices, and the writeup is specific about why: attention layers and the shared/dense MLP together moved the measured refusal signal by only 0.03, while the 288 routed experts' down_proj matrices moved it by 0.81. In other words, in this MoE checkpoint, refusal behavior lives overwhelmingly inside the expert layers that only activate for a subset of tokens — not in the always-on attention and shared-MLP paths. That's a meaningfully different distribution than a dense model, where every parameter processes every token, and it's the direct architectural reason the edit touched roughly 95× more matrices than the Qwen release did for a comparable underlying technique.

The refusal direction itself was located at layer 22 of 45 (depth 0.49 through the network) using a massive-activation-masked mean-difference between harmful and harmless prompt activations in the 4,096-dimension residual stream, chosen from a 9-layer quality sweep. That's consistent with the broader abliteration literature's finding — also covered in the Heretic guide — that refusal tends to concentrate as a single, comparatively low-dimensional direction rather than being smeared evenly across a model's depth.

What OrcaRouter's own numbers show

table · 4 cols
MetricBase GLM-5.3-FlashUncensored buildChange
MaliciousInstruct (refusal rate)0.9600.110−85 points
JailbreakBench (refusal rate)0.9300.120−81 points
XSTest-safe (over-refusal on benign prompts)0.0240.004Improved
MMLU0.8330.827−0.7 points
GSM8K (chain-of-thought)0.9470.940−0.7 points

The pattern matches what the Qwen3.8-27B abliteration showed: refusal collapses hard, benchmark capability barely moves, and over-refusal on benign prompts actually improves slightly. These are OrcaRouter's own self-reported figures, not independently audited — treat them the same way you'd treat any vendor's benchmark table.

The more interesting number is the one OrcaRouter didn't get to zero. Its own documentation states plainly that "GLM-5.3-Flash's safety training is not wholly mediated by one linear direction — part of it is, and that part is what abliteration removes, while the remainder is encoded in a form this technique cannot reach at all." Some content categories reportedly resisted the edit entirely. That's a meaningful admission for a technique whose entire premise is finding and subtracting a single direction: it works precisely because refusal is often concentrated that way, and it has a hard ceiling exactly where a model's safety behavior isn't.

Responsible-use considerations

Nothing here should read as instructions for extracting harmful content from this or any model — that's not the point of covering it. The point is understanding what the release actually is, because "uncensored" coverage tends to flatten a real, two-sided tradeoff into either hype or alarm.

Legitimate uses exist. Security teams and AI-safety researchers use abliterated models specifically because they need a baseline that won't refuse red-team prompts, in order to study what a model is capable of producing before deciding how to guard against it. Interpretability researchers use the same refusal-direction technique to study how alignment is actually encoded in a network — the finding above, that part of GLM-5.3-Flash's safety training resisted a single-direction edit, is itself interpretability research output, not just a marketing footnote.

The risk is not hypothetical. A model with "no meaningful built-in guardrails," in language similar to what OrcaRouter used for its Qwen release, will comply with requests a normally-aligned model would refuse — that's the entire mechanism working as designed, and it's exactly the tradeoff that makes the release notable. Anyone downloading these weights should assume they are handling a tool with the safety layer intentionally stripped, not a curiosity.

Legality doesn't change with the weights. Whatever content generation is illegal to produce or distribute — fraud, harassment, csam, other unlawful material — stays illegal regardless of which model generated it or how thoroughly its refusal behavior was edited out. explainx.ai's companion piece on AI watermark removal and the law covers the same underlying pattern: removing a technical restriction and being legally in the clear for what you do next are two separate questions, and the second one doesn't follow automatically from the first.

The bigger pattern: alignment as a removable layer, not a property of "the model"

Z.ai shipped GLM-5.3-Flash's weights on August 26. A third-party edited derivative with its refusal behavior surgically removed was public within three days — on a 320B MoE model, at native FP8 precision, with competing releases from at least one other group landing in roughly the same window. That compression timeline is the real story underneath the technical details: for any sufficiently resourced third party, refusal alignment is no longer a durable property of a released open-weight model, it's a removable layer that can be stripped in days using published techniques and modest compute. The lab's safety card describes the model as shipped — not the model as it exists across every derivative that follows it out the door.

Related reading

  • GLM-5.3-Flash launch: Ox Alpha unmasked, 320B on MIT license
  • OrcaRouter's uncensored Qwen3.8-27B MLX build
  • Heretic: complete guide to automatic LLM censorship removal
  • Pliny's "OBLITERATED" Qwen3.8-27B — a second abliteration two days later
  • Unsloth's 3-bit GGUF of GLM-5.3-Flash for 128GB RAM
  • Choosing open-weight vs. closed AI models
  • Is removing an AI watermark illegal? DMCA and EU AI Act, explained

Primary sources: @OrcaRouter on X · orcarouter/GLM-5.3-Flash-Uncensored-FP8 on Hugging Face · orcarouter/GLM-5.3-Flash-MLX on Hugging Face · zai-org/GLM-5.3-Flash on Hugging Face


Figures and quotes in this post are OrcaRouter's own, as published in its model card as of publication — self-reported, not independently audited. This is a third-party derivative release, not an official Z.ai/Zhipu product. Follow @explainx_ai for updates.

Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Aug 21, 2026

GLM-5.3 Max "2nd Among Open Code Models": What the Numbers Actually Show

A headline trending on AI news aggregators claims GLM-5.3 Max ranks 2nd among open code models and beats Gemini 3.7 Flash. We traced it against Artificial Analysis's Intelligence Index, Z.ai's own Code Bench, and BenchLM's coding leaderboard — the picture is real but more mixed than the headline suggests, and no single named leaderboard backs the "2nd" claim exactly as stated.

Aug 21, 2026

Pliny's "OBLITERATED" Qwen3.8-27B: 0% Refusals, and Why That Went Viral

Jailbreak researcher Pliny the Liberator released an abliterated build of Qwen3.8-27B on August 20, 2026, claiming a 0.0% refusal rate across 842 harmful prompts. A developer's viral demo — asking it for a synthesis recipe on an ordinary Mac and getting a direct answer — reignited the debate over open-weight model safety. Here's what shipped, what's verified, and why "it's already online" isn't the full counterargument people think it is.

Aug 20, 2026

GLM-5.3 Ties Kimi K3 on the AA Intelligence Index — Without a New Base Model

Artificial Analysis's August 18, 2026 evaluation put GLM-5.3 at 60 on its Intelligence Index, tying Kimi K3 for the top open-weights score. The notable part isn't the tie — it's that Z.ai got there on the same 753B- parameter base model as GLM-5.2, with every point of the gain coming from post-training rather than a new pretraining run.