Hardening Open Weights Buys Cost Asymmetry, Not Safety
Carnegie Mellon's defense drives the cheapest jailbreak to near zero and still lets nearly one in five Heretic runs through, which puts weight provenance — not hardening — at the center of the control set.
What the defense actually does
Decoy Direction Optimization never retrains the model. It freezes the base weights and edits a handful of low-impact MLP neurons to plant a harmful-selective direction that is orthogonal to genuine refusal. When an attacker runs contrastive abliteration — the standard procedure for locating and deleting the internal direction that makes a model say no — it strips the decoy and leaves real refusal intact. TheSequence puts the cost at roughly two minutes on a single A100, 30 to 450 times cheaper than defenses that require training. That price is the operationally important number: hardening every open-weight artifact in your estate now costs less than the meeting where you debate whether to.
Read the Heretic row twice
Standard refusal-feature ablation drops from up to 85% attack success to under 10%, and to 1.8% specifically on Llama-3-8B-Instruct. The Heretic toolchain drops from 88.7% to 18%. Against multi-phase attacks, DDO reaches parity with trained defenses rather than beating them. The honest reading is cost asymmetry, not remediation: after hardening, roughly one in five runs of the better public toolchain still yields a model with no refusal behavior.
That residual decides where this sits in your threat model. If the adversary is an external prompt attacker hitting a hosted API, DDO is an effective mitigation and you should treat it as one. If the adversary is a motivated insider, a downstream redistributor, or anyone who can obtain a copy of the weights, hardening reduces exposure without removing it. The control that scales is provenance — knowing which artifact, hashed, from which source, is loaded in which service.
The quieter problem: your own pipeline erodes refusal
Johns Hopkins formalized 100-task continual memorization without replay buffers or task IDs and found that naive sequential fine-tuning retains 1.2% of prior-task information. The best composed stack — data, function and weight anchors plus merged LoRA — recovers only to 34.9%. Refusal is a learned behavior subject to the same decay curve as everything else the model learned. The model that passed red-teaming three fine-tunes ago is not the model serving your traffic. Nobody in the ML org will raise this, because it presents as capability drift rather than a safety regression, and it has no owner in either team's backlog.
Where two independent reads converge
The ML Engineer reaches the same conclusion from procurement rather than research. Model weights are executable artifacts that bypass software composition analysis entirely, so they require a model-BOM — pinned version, checksum, signature verification, provenance record, plus license and data-handling review — mapped to MITRE ATLAS ML Supply Chain Compromise. That source also flags t0-beta, a 256M-parameter open time-series model being tested for in-browser WASM inference. That relocates regulated data processing onto the client, with no backend change request and no privacy review triggered.
The two prescriptions differ in sequence, and the order is the actionable part. TheSequence wants a hardening step inside the model release pipeline. The ML Engineer wants artifact control at ingest. You cannot harden what you cannot name, so the registry entry comes first, the DDO pass second, the regression gate third.
Hardening an open-weight model is a discount on risk, not a removal of it — the durable control is knowing exactly which weights are loaded where.
What to do
Inventory every self-hosted and fine-tuned open-weight model in production and pre-production this week, recording source and weight hash, and block any deployment lacking a registry entry.
Pilot DDO on your highest-exposure internal model this quarter and measure attack success before and after against both standard ablation and the Heretic toolchain.
Add a refusal-behavior regression suite as a hard pass/fail gate before the next model release, and track attack-success drift release over release.