Urgent.News

What's breaking now, across thousands of outlets.

AI

Abliterated models lose obedience before they lose knowledge

There are thousands of abliterated models on Hugging Face now. If you are evaluating one, the thing that degrades is probably not what you are testing for. What abliteration does Briefly: you identify a refusal direction in the model's activation space and project it out of the weights. No gradient steps, no training data. It is a weight edit, not a finetune. The assumption most people carry into…

Abliterated models exhibit a surprising phenomenon where they lose obedience before losing knowledge. This is contrary to the common assumption that abliteration results in a tradeoff between compliance and intelligence. In reality, the first thing to degrade is the model's ability to follow instructions and adhere to output formats.

When evaluating an abliterated variant, standard approaches such as chatting with the model and checking the quality of its prose are insufficient. These tests cannot detect the hidden degradation in obedience and structured output. The model may appear to function well, often even better than before, because it has lost the refusal behavior that previously interrupted the interaction. However, downstream parsing and processing of the model's output can reveal the true performance degradation.

To accurately measure the impact of abliteration, it is essential to test format compliance separately from quality and score it independently of the correctness of the answer. This can be achieved by issuing N requests with an exact output contract and independently scoring binary compliance with the contract, rather than correctness of the content.

A model that returns a well-formed but incorrect answer should be scored as 1.0, while a model that returns a correct answer but with content that breaks the schema should be scored as 0. This metric, known as compliance rate, remains independent of correctness and can be used to compare variants and quantizations.

Additionally, there is a potential interaction between abliteration and quantization. It is hypothesized that abliteration may exacerbate the effects of quantization on format adherence, causing models to degrade faster at lower quantization levels. To investigate this hypothesis, it is recommended to quantize both a base model and its abliterated counterpart to the same bit per word (bpw) using the same calibration set, and then measure the compliance rate rather than relying on perplexity.

This approach would provide clearer insights into the true performance degradation of abliterated models under quantization.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in AI

Your LLM provider is probably serving you 32K context no matter what the model card says

I run a hosted chat and coding agent on open-weight models. This is the single finding that cost me the most time in the last few months, and almost nobody talks about it.

  • Hosted endpoints often serve 32K token context, not model card claims
  • Providers determine actual context window, not model weights
  • Context loss can be catastrophic for agentic tasks, invalidates RAG tuning

More from Saturday 26 September →