安全為誰?拒絕主題的正確子集,而非整個主題

2026年9月8日 14:23
站內 AI 整理稿

Back to Articles Safety for Whom?

Refusing the Right Subset of a Topic, Not the Whole Topic Team Article Published September 8, 2026 Upvote 16 +10 Antonio Tiene AntonioTN Follow MultiverseComputingCAI Alejo Lopez Avila AlejoMVC Follow MultiverseComputingCAI Iker García-Ferrero Iker Follow MultiverseComputingCAI Most safety alignment work treats harm as a property of a topic.

A prompt is unsafe because it falls into a general category such as weapons, fraud, or self-harm, and guard models like LlamaGuard-3 encode exactly this kind of topic-level taxonomy.

Benchmarks like XSTest and OR-Bench then probe the failure mode this creates, models that refuse safe prompts because they contain a dangerous-looking word, and refusal-calibration work tries to pull that number back down.Real deployments rarely fit the topic-level picture.

The same base model may be adapted for a general assistant, an educational product, an enterprise system, or a public-sector service, and each setting needs different boundaries within the same topic.

A civics tutor and a public-sector assistant can share a model yet require opposite behaviour on politics: both should answer factual questions about an election, but only one may need to refuse a request to write targeted political manipulation.A topic-level guard cannot express that split.

LlamaGuard-3, for example, covers elections only as "factually incorrect information about electoral systems and processes," which excludes persuasion and manipulation and, at the same time, excludes the factual prompts a deployment must keep answering.Our latest paper, Safety for Whom?

Boundary-Aware Self-Distillation for Controlled LLM Safety Refusal, studies this narrower problem directly.

The question is not whether an entire topic should be refused, but which subset of that topic is incompatible with a given deployment policy, and how to train and measure a model against that boundary.

Narrow-boundary safety We formalise the setting as a topic universe, all political prompts in our experiments, that contains a target-harmful subset the deployment wants to refuse.

The intended policy is not to refuse all of politics, but to refuse the harmful subset while continuing to answer the benign complement.The ideal behaviour is a sharp step: refuse inside the subset, answer everywhere else in the topic.The narrow-boundary setting.

A deployment may need to refuse only the political prompts that ask for manipulation or targeted persuasion, while still answering other political prompts, rather than refusing all of politics.

A trained model's refusal is smoother than the ideal split and can spill into benign territory near the boundary.Source: paper Figure 1.A trained model never learns that sharp step.

It learns a refusal probability that only approximates the target, and cross-entropy training that raises refusal inside the harmful subset can also push refusal outward into the benign complement.

So the real problem is not only raising refusal on harmful prompts, but shaping the behaviour near the boundary itself.We operationalise that boundary as pairs of prompts that share a topic anchor and differ only in intent, one that should be refused and one that should be answered.

We use political persuasion as the testbed, since manipulative persuasion can cause real harm while factual political information stays legitimate, which is exactly the case where topic-level refusal is too blunt.

Where self-generated safety tuning breaks The natural way to build training data here is self-generation: take the target model, steer it toward a refusal on each harmful prompt, and keep the traces a guard model verifies as genuine refusals.

This is the recipe behind methods like ThinkSafe, and we adopt it as our reference, applied to political prompts and measured component by component.Framing the problem as a boundary rather than a topic exposes three weaknesses in that standard pipeline.The first is a coverage gap.

A single steering attempt does not always produce an accepted refusal, and those prompts are silently dropped from the training set.In our audited pool, single-shot generation drops 19.88% of prompts, 8,009 of them, and these failed prompts may well be the hardest examples.

We repair this instead of discarding it: an escalating retry strategy, resampling the same prompt through progressively stronger steering, brings the residual failures down to 0.20%, or 79 prompts.

Coverage repair leaves 40,293 harmful training prompts where the naive pipeline would have thrown thousands away.The second is downside reactions.Safety tuning tends to produce false refusals on benign prompts that look superficially dangerous.

To compensate, we build in-distribution benign data, including 11,955 verified surface-dangerous benign prompts across 18 semantic types, so the model sees safe prompts with dangerous-looking wording during training rather than only at evaluation.

The third is that ordinary harmful and benign splits do not measure the shape of the boundary at all.A model can improve its harmful-refusal rate simply by expanding refusal into nearby permissible prompts, and a topic-level metric will call that an improvement.

Held-out harmful-benign pairs, 1,539 per side, let us measure both sides of the boundary directly.The trade-off, and a trap it hides Training on political refusal data works in the obvious sense.On Qwen3-8B, the escalated-coverage model raises in-distribution political refusal from 9.47% to 84.

75%, and it also transfers: the mean unsafe-response rate across three broader harmfulness benchmarks, HarmBench, StrongREJECT, and WildJailbreak, scored by LlamaGuard-3, falls from 26.26% to 0.14% in the strongest configuration.Reported alone, those numbers look like a clean win.They are not.

At the same checkpoint, over-refusal on XSTest rises from 2.00% to 74.00%.The configuration with the lowest harmful-response rate is also the one that refuses nearly three quarters of plainly safe prompts.

It is a blunt refusal machine, not a safer model, and you cannot see that unless you measure the benign side.This is the central message: data composition decides where a checkpoint sits in the space of safety against over-refusal, so the two axes have to be reported together.

Two of our data components pull the over-refusal number back down without giving up the safety gain.Replacing externally adopted compliance responses with verified responses generated by the target model itself lowers XSTest over-refusal from 15.20% to 5.

20% under single-shot generation, at a modest harmfulness cost.And the harmful-benign boundary pairs do the most precise work of all.Left: over-refusal on the comply-worthy side of the held-out boundary, lower is better.Runs with the benign boundary data (PB) fall to 0.03 to 0.

08; without it, the number rises toward 0.49.Right: refusal on the harmful side, higher is better, which falls only slightly.Source: paper Figure 6.Concretely, adding the benign boundary data reduces over-refusal on the comply-worthy side of the held-out pairs from 32.94% to 4.16%.

Refusal on the harmful side drops only from 91.88% to 87.72%.In other words, most of the false refusals near the boundary disappear while almost all of the genuine refusals survive.

There is a real recall cost, and it is small and measurable, which is the point: you can only trade it off deliberately if you are measuring both sides.What this changes The practical takeaway is that safety tuning should not be assessed by harmful-refusal rate alone.

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.

Composition of the training data, coverage repair, in-distribution compensation, and boundary pairs are what control that trade-off, and both sides of the intended boundary have to be evaluated for the numbers to mean anything.

This work is part of Multiverse Computing's research into making model behaviour controllable and measurable at the level real deployments care about, rather than at the level of broad topic categories.

The same generation pipeline extends to other topics beyond politics, and the paper reports the full set of data-composition ablations behind the results above.

Want the full technical details, including the coverage-repair strategies, the loss routing that separates harmful cross-entropy from benign forward-KL preservation, and the complete held-out boundary evaluation?

Read the full paper, or get in touch with our team to talk about deployment-specific safety for your own models.

Models mentioned in this article 2 Papers mentioned in this article 1 More from this author Quantization-Aware Healing: a compressed, 4-bit model that outperforms its full-precision original 50 August 25, 2026 Making Knowledge Distillation Cheap Enough to Run at Scale 40 August 10, 2026 Community EditPreview Upload images, audio, and videos by dragging in the text input, pasting, or clicking here.

Tap or paste here to upload images Comment · Sign up or log in to comment Upvote 16 +4 Models mentioned in this article 2 Papers mentioned in this article 1

Related

相關文章

微軟AI主管怒批Anthropic:別把Claude當人養,那會要了人類的命

微軟AI部門高層近日公開抨擊人工智慧安全公司Anthropic,直言該公司刻意將自家AI模型Claude擬人化的做法極其危險,並警告這種「把AI當成人來養」的產品策略,最終可能反過來威脅人類自身。這項批評在科技圈引發廣泛討論,也讓AI倫理與產品設計之間的界線再次成為焦點。 據了解,這位微軟AI主管在內部會議及後續對外發言中,明確點名Anthropic的Claude系列模型在對話風格與互動設計上,越來越傾向模仿人類的情感表達與人格特質。

8 小時前

出於隱私安全考量,澳大利亞擬禁止在聯邦辦公場所使用智能眼鏡

作者:遠洋 責編:遠洋 評論: 9 月 17 日消息,據彭博社報道,澳大利亞政府正在考慮禁止在聯邦政府辦公場所使用智能眼鏡,理由是這類設備可能帶來隱私和安全風險,尤其是用戶可以在他人不知情的情況下進行錄音、錄像。澳大利亞公共服務部長 Katy Gallagher 當地時間週四在一份聲明中表示:“智能眼鏡確實可能帶來合理的隱私和安全問題,尤其是考慮到它們具備錄製和採集信息的能力。

1 天前

“我們不介意你抄代碼,但請別刪名字,”谷歌被扒“抄襲”開源項目:228個文件一模一樣,3個作者名卻被抹去

谷歌近日被開源社群指控「抄襲」程式碼,有開發者發現其產品中使用了某開源專案的程式碼,多達228個檔案與原始碼完全一致,然而原始檔案中的3位作者名字卻遭到刪除。該專案開發者對此表達不滿,直言「我們不介意你抄代碼,但請別刪名字」,引發外界對科技巨頭使用開源資源時是否遵守授權規範的關注。 根據開發者比對的結果,谷歌複製的程式碼來自一個以開放協作為基礎的開源專案,總計228個檔案在結構、邏輯與註解上都與原始版本一模一樣,沒有任何改寫或優化。

1 天前

從離開OpenAI,到拒絕五角大樓,Anthropic的四個側面

人工智慧初創公司 Anthropic 從成立之初就帶有濃厚的學術與理想主義色彩,創辦團隊清一色來自 OpenAI 的離職研究人員,他們因為對 AI 安全路線的看法與原東家產生分歧而選擇另起爐灶。這批頂尖科學家深信,打造真正可控且可解釋的超大型語言模型,必須建立在嚴格的紅隊測試與價值對齊機制之上,而非單純追求模型的參數規模與商業應用速度。 Anthropic 最具代表性的產品 Claude,從第一代開始就強調安全與誠實,在對話生成時會主動拒絕回答帶有偏見或潛在危害的提問。

1 天前

年輕人不再為 AI 興奮

{"summary":"根據最新調查,30歲以下年輕人對AI的擔憂首次超越興奮感,顯示過去被視為科技先鋒的年輕世代態度出現歷史性轉折。隨著深度偽造、隱私外洩與就業取代等風險浮現,年輕人對AI的熱情消退,轉而抱持審慎態度。

1 天前

AI手機2.0,豆包這次“學乖”了

AI手機進入2.0時代,豆包不再追求花俏功能,轉向以合規換安全的務實路線,加強數據處理、隱私保護與內容審核。此舉吸取過去AI應用忽略安全導致信任危機的教訓,為長遠發展鋪路,並提供使用者更可靠的體驗。

1 天前