MarkTechPost AI模型更新

Mistral AI Releases Shieldstral 1.0 3B: An Open-Weights Policy-Adaptive Multimodal Safety Classifier Matching Models 7× Its Size

2026年8月8日 04:36

重點摘要

Mistral AI has released Shieldstral 1.0 3B, an open-weights, policy-adaptive multimodal safety classifier that treats content moderation as a single yes/no question rather than a fixed taxonomy of harm categories.

站內 AI 整理稿

Mistral AI has released Shieldstral 1.0 3B, an open-weights, policy-adaptive multimodal safety classifier that treats content moderation as a single yes/no question rather than a fixed taxonomy of harm categories.

Most guardrail models bake their category list into the weights, so re-targeting one to a new deployment context means retraining — and the same content can be acceptable on a cybersecurity research tool while being harmful on a mental-health platform.

Shieldstral inverts that: operators write the policy as a plain-language question at inference time, and the model returns a calibrated safety score from a single forward pass.Built on Ministral-3-3B-Base-2512 with a native Pixtral vision encoder and released under Apache 2.0, it reports 84.

9% average F1 on text safety — matching GPT-OSS-Safeguard-20B — and 83.8% on multimodal safety, ahead of every baseline Mistral evaluated.Is it deployable?Yes, and locally.Shieldstral-1.0-3B fits in 16GB of VRAM in BF16, runs on a single GPU, and is licensed Apache 2.

0 for commercial and non-commercial use.Serving paths are already in place: vLLM (≥0.26.0, recommended), llama.cpp via GGUF conversion with Q8_0/Q5_K_M/Q4_K_M quantization, SGLang, and Transformers — with fine-tuning supported through Axolotl.

The classifier emits one token, so latency and cost sit far below reasoning-based guards like GPT-OSS-Safeguard-20B.

Which level of company: the 16GB footprint puts it within reach of seed-stage AI product teams that cannot justify a moderation vendor contract, while the open license and self-hosting story suit mid-market and enterprise teams that need guardrails inside a VPC or on-prem for data-residency and audit reasons.

Multi-tenant SaaS vendors get a specific win — one checkpoint can enforce a different policy per customer.

Industries: consumer social and UGC platforms, ed-tech and child-safety surfaces, healthcare and mental-health apps, fintech and insurance support automation, gaming and voice chat, marketplaces and ad/creative review, and public sector deployments with sovereignty requirements.

Applications: user-prompt moderation, model-response moderation, refusal classification, image-plus-caption review for ads and memes, training-data and RAG-corpus curation, output gating in agentic pipelines, and per-tenant policy enforcement.

Because the output is a continuous score rather than a label, teams can tune the threshold per surface or route borderline scores to human review instead of hard-blocking.Moderation as a binary question Shieldstral reduces moderation to one yes/no question.

A fixed system message establishes the task; the user message carries three fields: <Instruct> (evaluation context and strictness), <Query> (the policy, phrased as a single yes/no question), and <Document> (a prompt, a response, a prompt–response pair, or an image with optional text).

At inference the model unembeds only toward the yes and no token IDs and softmax-normalizes them into a continuous score, thresholded at τ=0.5.

That collapses prompt classification, response moderation, refusal detection, and toxicity detection into one problem — and it means the policy lives entirely in the prompt.

Mistral’s guidance is one policy per call; for a broad safe/unsafe verdict, list the categories in <Instruct> and ask a single wide <Query>.The data recipe The claimed advantage comes from data, not scale: roughly 54.1M samples — 45.2M open-source text, 4.4M synthetic contrastive text, 4.

5M multimodal.A template-based unification layer converts every dataset into the same instruction–query–document format via per-dataset processors, with randomized phrasings and calibrated strictness (strict for adversarial jailbreaks, lenient for response-quality data).

The more interesting piece is contrastive generation.An LLM rewrites safe text into an unsafe variant that violates a target category but deliberately not its sibling, producing a positive and a hard negative over identical content in one call.

That teaches the model which policy is violated rather than a coarse safe/unsafe split.

Image data — which cannot be synthesized the way text can — is supplemented with general-purpose image datasets as negatives, query mutation across a 14-subcategory visual taxonomy, and vision–language reranker filtering.Training is LoRA fine-tuning followed by a three-way SLERP merge: 0.

6 public+generated, 0.3 public-only, 0.1 Ministral-3B-Instruct.Results On text safety, Shieldstral reports 84.9% average F1, tying GPT-OSS-Safeguard-20B (84.9%) as the smallest model in the comparison, with wins on ToxicChat (84.1), HarmBench (99.4), and Aegis v2 response (87.2).

On multimodal safety it reports 83.8% overall versus 77.6% for OmniGuard-7B, leading VLGuard (97.7) and UnsafeBench (81.8); LlavaGuard-7B still leads its namesake benchmark at 81.4.

On the adaptability benchmark — built on a deliberately divergent taxonomy of 12 super classes, 26 subcategories, and 52 leaf categories with 90 fixed queries, where no leaf maps one-to-one to training — Shieldstral scores 91.3% F1, behind GPT-OSS-Safeguard-20B (94.1%) and Nemotron-3.

5-Safety-4B (91.8%), but without generating a reasoning trace.Refusal detection lands at 91.5% overall against 93.7% for GPT-OSS-Safeguard-20B.Where it is weaker: multilingual prompt classification lags on Arabic and Indonesian and on RTP-LX prompts (70.3 vs 86.1 for Nemotron-3.5-Safety-4B).

Mistral also flags reduced reliability on adversarial or obfuscated inputs and very long documents.Trained context is 32k tokens across 12 languages.(function(){ window.addEventListener("message", function(e){ var d = e.data; if (d && d.mtpShieldstral && d.h) { var f = document.

getElementById("mtp-shieldstral-frame"); if (f) f.style.height = d.h + "px"; } }); })(); Key Takeaways 3B Apache 2.0 multimodal guardrail; policy is a plain-language question at inference time, no retraining.84.9% text F1 ties a 20B model; 83.

8% multimodal F1 is best-in-class among evaluated baselines.54.1M samples with sibling-contrastive rewrites is the actual mechanism behind policy generalization.Single forward pass, single token out, continuous score at τ=0.5 — cheap enough for real-time gating.

Weak spots: low-resource languages, obfuscated inputs, long documents.Check out the Paper, Model on Hugging Face, and Technical Details.Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter.Wait!are you on telegram?

now you can join us on telegram as well.Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?Connect with us The post Mistral AI Releases Shieldstral 1.

0 3B: An Open-Weights Policy-Adaptive Multimodal Safety Classifier Matching Models 7× Its Size appeared first on MarkTechPost.

Related

相關文章

IT之家模型更新

微軟預告 Win10/Win11 經典版 Outlook 更新:基於上下文 AI 解釋用戶選中文本

首頁 > 智能時代>人工智能 微軟預告 Win10/Win11 經典版 Outlook 更新:基於上下文 AI 解釋用戶選中文本 2026/8/8 11:39:29 來源:IT之家 作者:故淵 責編:故淵 評論: IT之家 8 月 8 日消息,科技媒體 Windows Latest 昨日(8 月 7 日)發佈博文,報道稱面向 Windows 10、Windows 11 經典版 Outlook 應用,微軟開始推送名為 Explain This 的 Copilot AI 功能。功能方面,用戶打開郵件後,只需選中任意文本,Copilot 就會結合整封郵件的內容,給出貼切的上下文解釋。微軟在更新說明裡寫道,這項改進讓用戶對 Copilot 有更高的控制權,可以決定其在何時、如何協助完成任務,從而在工作流中整合生產力、清晰度和決策能力。時間表方面,微軟預計經典版 Outlook 的 Explain This 功能會在 9 月底前完成推送,大多數用戶會在 9 月初看到它。 投訴水文 我要糾錯 下載IT之家APP,簽到賺金幣兌豪禮 相關文章關鍵詞:Outlook,AI,微軟微軟 Win10/Win11 新版 Outlook 收件箱塞入 Copilot,AI 摘要過去 8 小時郵件Win10/Win11 新版 Outlook 本月將集成 Planner 任務管理,微軟希望藉此推動經典版用戶遷移微軟承認 Outlook 存在嚴重 Bug,郵件中的圖片無法正常顯示微軟修復 Outlook 奇怪 Bug:打開 Office 文檔顯示空白或“已損壞”微軟增強 Outlook AI 功能:自主梳理收件箱、調整日程安排等部分微軟 Outlook 365 用戶反饋安裝 2603 更新後出現“幽靈滾動”

剛剛
鈦媒體模型更新

A股不賺API賺,梁文鋒永遠不虧

A股不賺API賺,梁文鋒永遠不虧超聚焦2026.08.08 10:57 · 來自湖北全文4149字00:00 / 12:06Alpha沒了?API有了!文 | 超聚焦最近,梁文鋒的兩門生意,走出了不一樣的曲線。私募排排網統計數據顯示,截至2026年7月31日,梁文鋒旗下幻方量化對外展示的9只主流量化產品中,8只年內收益由正轉負,僅九章幻方中證500量化多策略2號勉強維持0.04%微弱正收益。

剛剛
鈦媒體模型更新

聊聊DeepSeek漲價:低價是手段,不是目的

聊聊DeepSeek漲價:低價是手段,不是目的市值榜2026.08.08 09:34 · 來自四川全文2802字00:00 / 07:58對於DeepSeek而言,低價已經幫助它完成了市場教育。下一步,它得證明自己能賺錢,而且能一直賺下去。

剛剛
何夕2077模型更新

AI生成強效噬菌體

史丹佛研究團隊使用生成式AI模型Evo 2合成近300種噬菌體,經實驗篩選出16種對大腸桿菌具強效殺滅能力的噬菌體。研究指出混合多種噬菌體的療法能有效降低細菌產生抗藥性的風險,未來可望應用於對抗MRSA等超級細菌。

6 小時前
何夕2077模型更新

低價模型掀起爭議

低價模型掀起爭議。 DeepSeek新版本引發業內熱議。超低價格令開發者群體 ��� 感到震驚。緩存定價機製成為開發者討論焦點。低成本大模型行業動態展開了討論。價格變動讓開源權重市場泛起漣漪。

6 小時前