← Home

REVELIO: Uncovering Interpretable Failure Modes in VLMs

By James Trappett · 15 May 2026

4 min read

Vision-Language Models are being deployed in settings where mistakes carry real consequences. Autonomous vehicles, surgical robotics, industrial inspection systems: these are domains where a model confidently producing a wrong answer is not merely an embarrassment but a potential hazard. The problem is that VLMs tend to fail in structured, reproducible ways that are difficult to anticipate through standard benchmarking. A model might perform admirably on average while consistently collapsing under specific combinations of conditions, say, a pedestrian at close range during heavy rain, or a partially occluded obstacle in an unfamiliar indoor corridor. This paper, arXiv:2605.12674, introduces REVELIO, a framework designed to surface exactly these kinds of structured vulnerabilities.

What REVELIO Actually Does

The central contribution is a formal definition of a failure mode as a composition of interpretable, domain-relevant concepts under which a target VLM consistently produces incorrect outputs. This is a meaningful departure from how failures are typically studied. Most evaluation work either measures aggregate accuracy across a benchmark or probes individual adversarial examples. REVELIO instead asks: which combinations of semantically meaningful conditions reliably break the model?

The challenge is combinatorial. If you have a vocabulary of domain concepts, such as weather conditions, object proximities, lighting states, and obstruction types, the space of possible combinations grows exponentially. Exhaustive search is computationally intractable. REVELIO addresses this with two complementary search strategies:

The two strategies are complementary by design. Beam search is efficient at local exploitation of promising failure regions; the GP-based sampler provides global exploration. Together they form a practical approach to a problem that would otherwise require either enormous compute or significant human-guided search.

Findings Across Two Domains

The authors apply REVELIO to autonomous driving and indoor robotics, two domains with meaningfully different failure taxonomies. The results are worth examining in some detail.

In driving environments, the discovered failure modes cluster around two themes. First, models exhibit weak spatial grounding: they struggle to correctly reason about the relative positions of objects in the scene, particularly when objects are close to the vehicle. Second, models fail to account for major obstructions. When a significant object partially blocks the view of a hazard, models behave as though the hazard is absent or less severe. These failures translate directly into simulated crash scenarios, which gives the findings concrete operational meaning rather than leaving them as abstract accuracy drops.

Indoor robotics failures split differently. VLMs in this setting either miss safety hazards entirely, producing false negatives that could lead to collisions or damage, or they become excessively conservative and generate false alarms at high rates. The latter is particularly interesting from a deployment perspective. A model that cries wolf too often is operationally useless even if it never misses a genuine hazard, and the fact that REVELIO surfaces this as a structured failure mode rather than random noise suggests it reflects something systematic about how these models process cluttered indoor scenes.

Methodological Strengths and Open Questions

The framework has several genuine strengths. The insistence on interpretable concept compositions means that discovered failures are actionable: a practitioner who learns that a model fails under pedestrian proximity combined with adverse weather can target data augmentation, fine-tuning, or deployment restrictions accordingly. This is a significant practical advantage over methods that identify failures through pixel-level perturbations or latent-space manipulations, which are harder to translate into engineering decisions.

The use of Gaussian processes for the exploration component is theoretically well-motivated. GP-based Bayesian optimisation is a principled approach to expensive black-box function optimisation, and Thompson Sampling is known to achieve strong empirical performance in bandit settings. The authors are applying a mature statistical toolkit to a relatively novel problem formulation, which is a reasonable engineering choice.

That said, there are questions the paper raises without fully resolving. The framework depends on a predefined vocabulary of domain concepts. Who defines this vocabulary, and how sensitive are the results to that choice? If the concept space is too coarse, genuine failure modes may be unrepresentable. If it is too fine-grained, the combinatorial search problem becomes harder and the interpretability benefit diminishes. The paper focuses on two specific domains, and it is not obvious how concept vocabulary construction would generalise to, say, medical imaging or satellite analysis, where domain expertise requirements are different and the failure modes may be harder to articulate in advance.

There is also the question of coverage. REVELIO finds failure modes; it does not prove their absence. A negative result from REVELIO, meaning no failures found under a given search budget, should not be interpreted as a safety guarantee. This is not a criticism specific to this work, it is a fundamental limitation of any testing-based approach to safety verification, but it is worth keeping in mind when considering how the framework fits into a broader safety assurance argument.

Implications for VLM Safety Research

The broader significance of this work lies in its framing. The field has spent considerable effort on adversarial robustness, typically measured against norm-bounded perturbations in pixel space. REVELIO shifts attention toward semantic robustness: whether models behave correctly across the space of meaningful real-world conditions. This is arguably more relevant to deployment safety than pixel-level robustness, because real-world failures tend to arise from unusual but physically plausible scene configurations rather than from imperceptible image corruptions.

The framework also has potential relevance to model auditing and certification workflows. Regulatory frameworks for AI in safety-critical domains are still taking shape, and structured, interpretable failure discovery of the kind REVELIO provides could feed directly into pre-deployment auditing processes. Whether the framework scales to the complexity of real production systems, with their heterogeneous sensor inputs, multi-modal context, and long-horizon reasoning requirements, remains to be demonstrated, but the conceptual foundation is sound.

For researchers working on VLM evaluation, interpretability, or AI safety, this paper is worth reading carefully. The combination of a well-posed problem definition, principled search methodology, and concrete empirical findings in high-stakes domains makes it a useful contribution to a space that has historically been somewhat underserved relative to model capability research.

Full paper: arXiv:2605.12674 - Revealing Interpretable Failure Modes of VLMs

VLM SafetyInterpretabilityAutonomous DrivingAI ResearchRobotics

Related Articles

Differential Privacy and Social Bias in LLMs: A Complex Trade-offAttention Maps Don't Predict VLM Reliability. Hidden States Do.Why LLMs Collapse to Narrow Outputs: A Calibration View