Skip to main content
ExplainerModel InterpretabilityMechanism Explainer· 4 min read· in Artificial Intelligence

How Concept Cones and In-Parameter Erasure Stop AI Models From Over-Refusing Safe Prompts

By mapping the multi-dimensional geometry of refusal and editing model weights directly, researchers are finally separating harmful AI requests from legitimate inquiries. These techniques reduce false refusals on safe prompts from 74% to under 5% without compromising safety.

By Mateo Ramos

Safety Alignment Researchers 40%Model Interpretability Teams 35%Open-Source Advocates 25%
Safety Alignment Researchers
Focus on mapping the exact geometry of refusal to prevent models from becoming overly cautious.
Model Interpretability Teams
Prioritize the complete and verifiable removal of dangerous knowledge from the model's weights.
Open-Source Advocates
Value precise concept erasure to allow customizable safety boundaries without degrading general performance.

Perspectives this story doesn't cover

  • End-users who rely on models for sensitive journalistic or medical research and are disproportionately affected by over-refusal.
  • Regulators attempting to define legal standards for what constitutes 'erased' knowledge in AI systems.

Key terms

Activation Space
The high-dimensional mathematical space where a neural network represents and processes the meaning of input data.
Over-refusal
A failure mode where an AI model incorrectly rejects safe, legitimate prompts because they contain keywords associated with sensitive or restricted topics.
In-parameter Suppression
A technique that directly edits a model's internal weights to permanently remove specific knowledge, rather than just filtering its outputs.
Boundary-aware Distillation
A training method that uses closely matched pairs of safe and unsafe prompts to teach a model the precise line between helpfulness and harm.

Key points

  • Traditional AI safety tuning treats entire topics as dangerous, leading to over-refusal rates as high as 74.00% on benign prompts.
  • Refusal behavior is governed by multi-dimensional concept cones in the activation space, not a single linear direction.
  • Boundary-aware distillation reduces false refusals to 4.16% by teaching the model the exact geometric line between safe and harmful intent.
  • In-parameter concept erasure directly edits model weights to permanently remove dangerous knowledge, reducing target concept accuracy to 7.7%.
  • Dynamic stress-testing frameworks use autonomous AI agents to verify that erased concepts cannot be extracted through adversarial prompts.

When a user submits a prompt to a large language model, the text is immediately mapped into a high-dimensional activation space. This specific mathematical coordinate determines whether the model will answer the question or generate a canned refusal. For years, safety alignment treated this space as a simple line: if a prompt crossed a single threshold into a "dangerous" topic, the model shut down. That single-vector approach is why models routinely refuse safe, educational, or journalistic questions simply because they contain sensitive keywords.

The scale of that failure is massive. According to research published by Multiverse Computing on the Hugging Face blog in September 2026, treating safety as a topic-wide property causes models to refuse up to 74.00% of perfectly benign prompts that happen to sit near a sensitive boundary. As the researchers note, "A model that refuses more is not automatically safer, and on a narrow boundary the same move that raises refusal on harmful prompts can quietly make the model useless on the legitimate prompts right next to them." A model tuned this way is not actually safer; it is just a blunt refusal machine.[1]

The solution lies in how the model's internal geometry is shaped during alignment. Researchers at the Technical University of Munich demonstrated in early 2026 that refusal is not governed by a single linear direction, but rather by complex, multi-dimensional "concept cones." By mapping these cones, engineers can separate the specific coordinates of a harmful request from the adjacent coordinates of a safe request within the exact same topic, proving that multiple distinct mechanisms drive refusal behavior.[2]

This geometric precision enables a technique called boundary-aware self-distillation. Instead of blocking an entire topic, developers train the model on "boundary pairs"—prompts that are contextually similar but differ in intent, such as a request to explain a political theory versus a request to generate manipulative propaganda. When this boundary data is introduced, the model learns the exact shape of the concept cone rather than relying on a flat topic filter.[1]

Boundary-aware distillation drastically reduces the rate at which AI models refuse legitimate prompts.

The empirical results of mapping these boundaries are stark. By implementing boundary-aware distillation, the over-refusal rate on benign prompts drops from 32.94% down to just 4.16%, while the refusal rate on genuinely harmful prompts barely shifts, moving from 91.88% to 87.72%. This proves that safety and usefulness are not a zero-sum game if the internal geometry is mapped correctly.[1][5]

The empirical results of mapping these boundaries are stark.

But what happens when a model needs to unlearn a concept entirely, rather than just refuse to talk about it? This requires a different mechanism: in-parameter concept erasure. While refusal steering leaves the dangerous knowledge intact and simply blocks the output, concept erasure directly edits the model's weights to remove the information.[3]

A framework called PISCES (Precise In-parameter Suppression for Concept EraSure), detailed in a May 2025 paper, achieves this by using a disentangler model to decompose the vectors in the model's multi-layer perceptrons. Once the specific features associated with a target concept—such as copyrighted material or biosecurity hazards—are identified using automated interpretability techniques, they are mathematically suppressed directly within the parameters.[3]

This in-parameter editing is vastly more precise than older methods like dataset filtering or gradient reversal. Tests on models like Llama 3.1 and Gemma 2 show that PISCES can reduce the model's accuracy on a targeted forbidden concept to as low as 7.7%, while improving the preservation of unrelated knowledge—known as erasure specificity—by up to 31%. The model genuinely forgets the dangerous information without degrading its general capabilities.[3]

In-parameter erasure successfully targets forbidden knowledge without degrading the model's general capabilities.

However, verifying that a concept has been truly erased remains a critical challenge. Static benchmarks often fail to catch models that still leak targeted concepts when faced with adversarial or compositional prompts. If the concept cone is not perfectly erased, indirect cues can still trigger the forbidden knowledge, creating a false sense of security for developers deploying these models in production environments.[4]

To solve this, researchers have developed autonomous stress-testing frameworks like STACE (Stress Testing Agents for Concept Erasure), introduced in July 2026. Instead of relying on static tests, STACE deploys multiple LLM agents that iteratively propose, critique, and verify adversarial prompts to probe the boundaries of the erased concept. This dynamic hypothesis search systematically expands the coverage of failure modes, exposing vulnerabilities that static benchmarks miss.[4]

The shift from blunt topic filters to multi-dimensional concept cones and in-parameter erasure represents a fundamental maturation in AI safety. By targeting the exact mathematical structures where refusal and knowledge reside, developers can finally build models that protect users from harm without treating every sensitive question as a threat. The boundary between safety and utility is no longer a guess; it is a measurable coordinate.

Frequently asked

What is a concept cone in an AI model?

A concept cone is a multi-dimensional geometric structure within a model's activation space that governs how it understands and reacts to specific topics, such as when to refuse a harmful prompt.

How does boundary-aware distillation work?

It trains the model using pairs of prompts that are contextually similar but differ in intent—one benign and one harmful—teaching the model the exact boundary of what should be refused.

What is the difference between refusal and concept erasure?

Refusal trains a model to block answers to certain questions while retaining the underlying knowledge. Concept erasure mathematically removes the knowledge directly from the model's parameters so it can no longer access it.

Sources

Source coverage

5 outlets

3 viewpoints surfaced

Safety Alignment Researchers 40%Model Interpretability Teams 35%Open-Source Advocates 25%
  1. [1]Hugging Face BlogSafety Alignment Researchers

    Safety for Whom? Refusing the Right Subset of a Topic, Not the Whole Topic

    Read on Hugging Face Blog
  2. [2]arXivModel Interpretability Teams

    The Geometry of Refusal in Large Language Models: Concept Cones and Representational Independence

    Read on arXiv
  3. [3]arXivModel Interpretability Teams

    Precise In-Parameter Concept Erasure in Large Language Models

    Read on arXiv
  4. [4]arXivModel Interpretability Teams

    Stress Testing Concept Erasure with Large Language Model Agents

    Read on arXiv
  5. [5]Factlen Editorial TeamSafety Alignment Researchers

    Synthesis by Factlen editorial team

    Read on Factlen Editorial Team

Comments

Stay informed

Every angle. Every day.

Get Artificial Intelligence stories with full source coverage and perspective breakdowns delivered to your inbox.