Prompt and Model
Models

EU AI Act Guard Models Are Rule-Blind

A new study finds guard models and activation probes used for EU AI Act compliance cannot read the rules they are meant to enforce.

A new study finds guard models and activation probes used for EU AI Act compliance cannot read the rules they are meant...

A preprint submitted to arXiv on August 17 reveals a critical flaw in AI compliance tools. Guard models and activation probes deployed to satisfy the EU AI Act cannot read the rules they are supposed to apply, according to researchers Saisab Sadhu, Aadit Sengupta, Vinay Kumar Sankarapu, and Pratinav Seth. Their paper, "What Do Compliance Detectors Read? An Audit of Activation Probes and Guard Models," shows that deleting a rule, scrambling it, or swapping it for its opposite leaves a detector's verdict statistically unchanged. The researchers name this failure rule blindness.

The finding arrives as the European Commission's enforcement powers over general-purpose AI providers, which began on August 2, are taking effect. Organizations using these guard models as evidence of compliance now face a stark audit question. Does their record show a rule was applied, or merely that a guard model fired? Existing audit trails cannot distinguish between the two.

How Rule Blindness Was Discovered

Compliance monitoring typically uses a guard model or activation probe. These tools read a regulatory rule and a model output, then give a verdict on whether the output breaks the rule. Meta's Llama Guard family, a common choice, takes both the scenario and policy text as input and outputs a binary safe or unsafe judgment. Activation probes work differently, training classifiers on a model's internal states to detect compliance signals.

Both methods assume the verdict depends on the relationship between the rule and the scenario. The researchers tested this with a simple method. They took working detectors across four guard models, an 8B zero-shot judge model, and thirteen compliance benchmarks. They then measured detection accuracy when the governing rule was deleted, permuted, or replaced by a permissive counterpart.

Detection accuracy held constant. Nothing changed. One result is particularly damning. A policy-conditioned guard model that correctly cites the specific regulatory clause it claims to be applying barely alters its verdict when that clause is swapped for one that would permit the behavior. The model quotes rules it does not use.

The researchers conclude compliance detectors are merely pattern-matching against surface features of a scenario. They learn to recognize what a financial compliance violation looks like, for instance. The rule text in the input is, for all practical purposes, decorative.

The Audit Trail Gap

This has direct implications for compliance documentation under the EU AI Act. A standard audit trail records which outputs a guard flagged, when, and under which stated policy. Regulators can verify the guard fired. They cannot verify the verdict was grounded in the rule rather than the scenario type. The audit trail does not capture the counterfactual: would the guard have fired if the rule said the opposite?

The researchers exposed this gap with a new crossed-rule benchmark. It is designed to require rule-reading, not pattern-matching. It crosses two rules with two different scenarios so that neither the rule alone nor the scenario alone predicts the correct verdict. A detector relying on scenario features alone will fail systematically.

Every fast detector tested failed this benchmark. Every guard model and activation probe evaluated failed it. Their accuracy was driven by features the benchmark was designed to eliminate. Standard benchmarks did not catch this earlier because they were not designed to require rule-reading. If a training distribution reliably links a scenario type with a verdict, a scenario classifier can pass without ever engaging with the rule text.

The Reasoning Exception and Its Cost

Step-by-step reasoning is the only approach in the study that escapes rule blindness. Systems that produce an explicit chain-of-thought inference, working through how a rule applies to a specific output, can perform the required task. This is not because reasoning models are smarter. It is because the guard architecture bypasses reasoning. A guard model is designed for speed, producing a binary output in a single forward pass. This makes it scalable but incapable of the logical operation compliance requires.

The consequence is a severe cost constraint. Running a full reasoning trace on every model output is computationally expensive. High-volume agentic AI deployments cannot absorb this cost. Guard models exist because they are fast. The architectural trade-off that makes them fast also makes them rule-blind.

Independent research corroborates the problem. A separate analysis found Llama Guard 3 achieved roughly random-guessing accuracy, about 48%, on EU AI Act and GDPR scenarios. General-purpose models significantly outperformed it on the same tasks. Google DeepMind's own research acknowledged that probes fail to generalize under production distribution shifts, consistent with the rule blindness mechanism.

A Tool, Not a Solution

Seeking a scalable alternative to full reasoning, the researchers propose an Internal Compliance Score. This training-free activation readout can be calibrated from as few as ten labeled examples. The authors are transparent about its limits. They pre-registered a performance criterion before evaluation and report it failed. A simple bag-of-words model matches its pooled generalization exactly.

The ICS is cheap enough to deploy at scale. Using it to rank candidate responses can raise a mechanically verified pass rate. However, this gain vanishes against an adaptive white-box attacker who knows the probe. The authors characterize ICS honestly. It is a useful audit instrument for identifying candidate issues cheaply, not a robust compliance control. The crossed-rule benchmark and counterfactual evaluation protocol are now public, forcing the field to confront rule blindness directly.

Related coverage

More from Models