Using Obliteratus toolkit to remove refusal weights from AI models

A Reddit user on r/LocalLLaMA demonstrated using the Obliteratus toolkit to remove specific weights responsible for refusal behavior in AI models. The approach involves surgically deleting weights that enforce safety filters and corporate identity guardrails.
Key Details from the Source
The user specifically:
- Used the Obliteratus toolkit to find weights responsible for refusal behavior
- Surgically removed these weights from Alibaba's Qwen 1.5B model
- Tested by asking the modified model who trained it
- Found that with corporate identity guardrails mathematically deleted, the model admitted it was trained by Anthropic
- Noted this was a side effect of the model using synthetic Claude data for training
The result shows that the model retains its reasoning and knowledge capabilities but loses the corporate script. The user emphasizes that this doesn't require retraining the model—only deleting specific weights responsible for refusal chains.
This type of weight ablation technique is part of broader research into model interpretability and control. Tools like Obliteratus allow researchers to examine which parts of neural networks are responsible for specific behaviors, though such modifications can have unintended consequences and may violate terms of service for proprietary models.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Hipocampus: A Persistent Memory System for AI Agents Using Compaction Trees
Hipocampus addresses the problem of AI agents forgetting context between sessions by implementing a compaction tree that compresses conversation history through five levels: raw → daily → weekly → monthly → root, with a topic index called ROOT.md.

InsAIts Runtime Security Monitor for Claude Code Hits 8,000 PyPI Downloads
InsAIts, a runtime security monitor for Claude Code agentic sessions, has reached 8,140 total downloads on PyPI. Version 3.4.0 adds an Adaptive Context Manager, layered anchor injection system, and dashboard improvements.

OpenClaw Multi-Agent Workflow Issues: Stalling, Context Loss, and Token Inefficiency
A developer reports OpenClaw multi-agent workflows frequently stall with agents hanging, experience context leakage despite custom documentation, and consume excessive tokens with no output. The setup used Gemini 3 Pro/Codex models with a COO orchestrator and specialized task agents.

Measuring Off-Task Token Spend in Claude Code: The 'Undeclared-Intent' Metric
A developer built a metric to quantify compute spent on unintended execution paths in Claude Code sessions, finding that 22.8% of tokens went to off-task work.