Skip to content
AI.info

Research

Watermarking for Factuality: Guiding Vision-Language Models Toward Truth via Tri-layer Contrastive Decoding

Overview Research area: Multimodal AI, computer vision, and vision-language models. Technical level: Intermediate. Scope: This paper introduces a training-free decoding method that uses a temporary vi

arXiv
2510.14304
Published
2025-10-16
Authors
Kyungryul Back, Seongbeom Park, Milim Kim, Mincheol Kwon, SangHyeok Lee, Hyunyoung Lee, Junhee Cho, Seunghyun Park, Jinkyu Kim

AI summary

Overview

Research area: Multimodal AI, computer vision, and vision-language models. Technical level: Intermediate. Scope: This paper introduces a training-free decoding method that uses a temporary visual watermark to identify a visually grounded intermediate layer in a large vision-language model and combines it with two other layers to reduce hallucinations.

What This Paper Is About

Large Vision-Language Models often hallucinate by describing objects or attributes that are not actually in an image, largely because they over-rely on language priors or memorized training data instead of grounding answers in visual evidence. The paper aims to reduce these hallucinations at inference time without retraining the model, by finding and using the model layer that is most responsive to visual information.

Key Contributions

  1. It proposes Tri-layer Contrastive Decoding (TCD), a training-free inference framework that contrasts three layer-wise outputs: a mature top layer, an amateur layer with high divergence from the top layer, and a watermark-selected visually grounded layer.
  2. It introduces a watermark-guided layer selection method that embeds a small CAPTCHA-like image into the input and asks an ad-hoc visual question, then uses the probability gain of the correct watermark answer across layers to identify the most visually grounded layer.
  3. It demonstrates state-of-the-art hallucination reduction on public benchmarks including POPE, MME, and AMBER across LLaVA-1.5, InstructBLIP, and DeepSeek-VL2-Tiny.
  4. It provides analysis showing that the visually grounded layer and the amateur layer play distinct roles: the visual layer helps typical and popular object queries, while the amateur layer helps adversarial cases where language co-occurrence biases are strong.

Main Findings

  • Strong gains on POPE: TCD improves LLaVA-1.5 from 82.04% to 87.00% accuracy on MSCOCO, from 75.58% to 86.46% on A-OKVQA, and from 74.39% to 85.47% on GQA, outperforming training-free baselines such as VCD, M3ID, and AVISC.
  • Improved perception on MME: For LLaVA-1.5, TCD raises the coarse-grained perception total from 509.28 to 653.30; for InstructBLIP, it raises the total from 442.09 to 531.67.
  • Fewer hallucinations on AMBER: TCD lowers the LLaVA-1.5 CHAIR score from 8.0 to 4.4 and the hallucination rate from 31.0 to 19.2, with similar improvements for InstructBLIP.
  • Works on a stronger backbone: On DeepSeek-VL2-Tiny, TCD reduces CHAIR from 3.8 to 3.6 and hallucination rate from 18.2 to 16.5, showing the method is not limited to a single model family.
  • Layer roles differ by query type: Ablations show that adding the visually grounded layer improves performance most on Random and Popular subsets, while the amateur layer helps more on Adversarial subsets. Combining both layers consistently improves results overall.
  • Layer selection is consistent: Heatmaps across datasets show that the watermark-guided method selects visually grounded layers with low variance within a model, though the chosen layer varies across different LVLM architectures.
  • Qualitative improvements: Generated descriptions from TCD correctly count people and distinguish background objects such as a house instead of hallucinating cars, unlike baseline methods.

Methodology in Plain English

The researchers avoid retraining or changing the model architecture. Instead, they insert a small CAPTCHA-like watermark into the bottom-right corner of the input image and ask a simple visual question about it, such as "What is the last CAPTCHA number in the image?" They then run the model and inspect intermediate layers using early-exit decoding, which allows each layer to produce a prediction for the watermark answer. The layer where the probability of the correct watermark answer jumps the most compared to the previous layer is chosen as the visually grounded layer. The final top layer is treated as the mature layer, and another intermediate layer that differs most from the mature layer, measured by Jensen-Shannon Divergence, is chosen as the amateur layer. For final generation, the model combines the mature layer's logits minus the amateur layer's logits plus a weighted contribution from the visually grounded layer, but only for tokens that the mature layer considers plausible. This contrastive decoding recalibrates the model toward visual evidence and away from purely language-driven guesses. The watermark is used only for selecting the layer; final answers are generated on the original image without the watermark.

Why This Matters

This work matters because it offers a practical, training-free way to make vision-language models more factual and visually grounded. It challenges the common assumption that the final layer always provides the best output and shows that intermediate layers can contain more reliable visual information. It also connects watermarking, typically used for security or provenance, to factuality and interpretability in multimodal models.

Real-world applications include:

  • Autonomous driving, where hallucinated objects or misread scenes could lead to dangerous decisions.
  • Medical imaging, where false descriptions of scans or pathology images could mislead clinicians.
  • Legal and forensic evidence analysis, where image descriptions must be accurate and defensible.
  • Accessibility tools such as image captioning for blind or low-vision users, where fabricated details reduce trust and usefulness.

Industry relevance is high because the method is a plug-in decoding strategy that does not require retraining, curated datasets, or architectural changes. Companies deploying LVLMs in high-stakes or customer-facing products can use it to reduce hallucination risk with relatively low computational overhead, though multiple decoding passes may still be needed for layer selection.

Future Directions

  • Develop learned or adaptive layer selection strategies, such as attention-based routing or score aggregation, instead of fixed rule-based comparisons.
  • Reduce inference cost by enabling single-pass dynamic layer selection without needing multiple decoding passes.
  • Extend interpretability and grounding analysis beyond the decoder layers to the visual encoder itself.
  • Improve evaluation for generative tasks by combining reproducible automatic metrics with semantic or human-in-the-loop scoring.
  • Explore adaptive weighting of the visually grounded and amateur layers based on input characteristics, since different query types benefit from different balances.
  • Test the approach on more architectures, including encoder-decoder models and other mixture-of-experts systems, and address broader biases that visual grounding alone does not fix.

Target Audience

This paper benefits multimodal AI researchers, computer vision and NLP practitioners, and engineers deploying vision-language models in production. It is also useful for safety, factuality, and interpretability researchers interested in inference-time interventions, as well as graduate students working on hallucination mitigation, contrastive decoding, or layer-wise analysis of large models.

Authors’ abstract

Large Vision-Language Models (LVLMs) have recently shown promising results on various multimodal tasks, even achieving human-comparable performance in certain cases. Nevertheless, LVLMs remain prone to hallucinations -- they often rely heavily on a single modality or memorize training data without properly grounding their outputs. To address this, we propose a training-free, tri-layer contrastive decoding with watermarking, which proceeds in three steps: (1) select a mature layer and an amateur layer among the decoding layers, (2) identify a pivot layer using a watermark-related question to assess whether the layer is visually well-grounded, and (3) apply tri-layer contrastive decoding to generate the final output. Experiments on public benchmarks such as POPE, MME and AMBER demonstrate that our method achieves state-of-the-art performance in reducing hallucinations in LVLMs and generates more visually grounded responses.

Read the original paper