groundy
models & research

PV-TAM Corrects Decoding Drift and Boundary-Marker Bias in VLM Localization Scoring

PV-TAM, proposed in a June 2026 arXiv preprint, corrects two structural biases in VLM localization scoring: decoding drift and modality boundary-marker contamination.

9 min · · · 3 sources ↓

The answer embedded in arXiv:2606.23763 is not what the title implies. The June 2026 preprint “Listening makes Vision Clear for VLMs” uses “listening” as a metaphor for attending to question-side semantics during evaluation, not as a recipe for adding audio as a pipeline input. Its actual contribution is PV-TAM, an evaluation method that corrects for two structural attention measurement failures in large VLMs and reports consistent localization gains across datasets as a result.

Why Is Standard VLM Localization Evaluation Miscalibrated?

Standard practice for assessing visual grounding is to measure a VLM’s attention maps against a ground-truth mask and score the overlap. The June 2026 preprint argues this practice has a structural flaw: the evaluation happens on the answer-generation side of the model’s forward pass, where the model’s own output tokens are already accumulating and corrupting the attention distribution before any measurement takes place.

The problem is not noise in the traditional sense, random error that averages out across enough examples. It is directional bias with identifiable sources. As the model generates its response token by token, previously generated answer tokens build up language priors in the attention state. By the time evaluation captures the attention map, it is measuring a distribution shaped in part by the model’s own partial output, not purely by how it processed the query image. The highest-attention regions in the image end up reflecting where the decoding process has pulled focus, which may diverge considerably from where the input question directed the model to look.

This matters for any practitioner relying on standard VLM benchmarks to compare models on visual grounding. If the evaluation infrastructure is consistently measuring the wrong thing, two models with different actual grounding quality can receive similar scores, and genuine improvements in localization can go unrewarded by the metric.

How Do Decoding Drift and Boundary Marker Bias Distort Attention Scores?

According to the preprint, two failure modes operate simultaneously in answer-side evaluation, and they compound each other.

The first is decoding drift. As the VLM generates its answer, each new token updates the attention state. Language priors from the accumulating sequence mismatch with the visual attention pattern that the input question established. The model’s peak-attention image regions diverge progressively from the semantically intended target as generation continues. Measuring attention after several tokens of decoding means measuring a distribution that has been pushed away from the query’s intent by the model’s own output.

The second failure mode is structural: modality boundary markers. These are the special tokens that separate vision inputs from text inputs in the model’s context window. They are plumbing, necessary for the model’s architecture to function, but not semantically informative in themselves. The preprint identifies that these markers can encompass a large portion of the context window and drive high attention to image regions that bear no relationship to the query target. Because standard answer-side evaluation pipelines do not filter them out, their attention footprint gets measured as if it were semantically informative.

The two failure modes are distinct in origin but additive in effect. Decoding drift is generated by the content of the model’s own answer; boundary marker bias is generated by structural tokens that precede any answer. Both push the measured attention distribution away from where the query directed the model’s visual processing. A VLM that correctly localizes the queried object may still score poorly under answer-side evaluation if these two biases dominate the signal.

What Does PV-TAM Measure That Standard Evaluation Misses?

PV-TAM (Prompt-Vision Token Activation Map), proposed in the preprint, addresses both failure modes through three changes to the evaluation protocol.

First, it shifts measurement from answer-side to prompt-side. Instead of capturing attention maps during decoding, PV-TAM measures them while the model is processing the input question itself. At this stage, no answer tokens exist to corrupt the distribution. The activation map reflects the model’s processing of the prompt without the compounding effect of its own generated output.

Second, it adds a filter that removes modality-boundary-marker tokens from the attention signal before computing localization scores. The boundary tokens are identifiable by type, so filtering them is architecturally straightforward. The fact that prior evaluation frameworks omitted this step suggests the field treated these markers as noise-free rather than as a systematic bias source.

Third, PV-TAM evaluates alignment using peak attention distribution rather than relying solely on mask overlap (the IoU-style approach). Mask overlap measures whether attention falls within the correct region; peak distribution measurement additionally captures how concentrated that attention is. A model that diffusely attends across a large bounding box and a model that tightly centers its activation on the queried object can produce similar IoU scores but very different peak distributions. Those disagreements carry information about localization quality that the standard metric discards.

The combination of these three changes is what the paper means by “listening”: measuring how well the model’s attention responds to the prompt’s semantics, rather than how well its decoding process approximates the right answer.

What Localization Gains Does PV-TAM Report, and What Remains Unverified?

The preprint reports that PV-TAM consistently improves both attention-based and IoU-style localization metrics over answer-side baselines across multiple datasets. The improvement appears across dataset types rather than in a single benchmark configuration, which is a stronger result than a single-dataset win. It suggests the bias being corrected is a property of the evaluation methodology, not an artifact of one particular dataset’s characteristics.

Specific numeric deltas are in the 18-page PDF body and were not disclosed in the abstract; those figures remain [unverified] until the full paper is read and the accompanying code, if released, can be used to reproduce results. Without the specific deltas, it is not possible from the abstract alone to assess whether the magnitude of improvement would change deployment-relevant ranking decisions between models, or whether it recasts which VLM leads on localization benchmarks.

The consistency claim has a useful property: it is falsifiable in a precise way. If PV-TAM improved results on some datasets but degraded them on others, that would be reported as inconsistency. The abstract’s framing does not report that, which is weak evidence that the effect is not due to benchmark-specific overfitting. But “weak evidence at preprint stage” is the appropriate epistemic position.

If “Listening” Is Metaphorical, What Does the Paper Actually Claim?

The paper does not claim that adding audio as a modality to VLMs improves their visual accuracy. The title is a deliberate metaphor: the model should “listen” to its input question rather than being evaluated by how it attends during answer generation.

This is worth separating from VALOR (arXiv:2304.08345), a 2023 preprint that does involve literal audio integration. VALOR pretrains a vision-audio-language model end-to-end on a 1M audiovisual-caption dataset (VALOR-1M) and reports state-of-the-art performance on cross-modality retrieval, captioning, and QA benchmarks. VALOR’s results show that audio, when incorporated as a genuine input modality and trained jointly with vision and language, can improve downstream task performance on those specific tasks. That is a different architecture, a different training regime, and a different claim than anything in the June 2026 preprint.

The risk in conflating them is that VALOR’s results give the misreading a plausible support structure. A reader who encounters “listening improves VLM vision” summaries and then searches for corroboration will find VALOR and conclude the claim checks out. It does not check out in the relevant sense. VALOR demonstrates that training on audio-visual data improves audio-visual tasks. PV-TAM demonstrates that changing where in the forward pass you run your evaluation corrects a measurement artifact. The mechanism is entirely different, and the practitioner consequence differs accordingly: VALOR implies a data and training cost; PV-TAM implies only an evaluation methodology change with no additional modality in the pipeline.

How Wide Is the Benchmark Gap VLMs Currently Face?

The PV-TAM paper’s critique of answer-side evaluation is one instance of a broader measurement deficit in the VLM field. The TGLG benchmark (arXiv:2505.11326v1), published by the University of Michigan, identifies a complementary gap: standard VLM benchmarks assume offline access to all frames simultaneously and score neither perceptual updating nor contingency awareness. A model that correctly identifies an object in one frame but fails to track its change in a subsequent frame receives the same score as a model that tracks it correctly. The static benchmark cannot see dynamic failure.

These two papers describe the same structural problem from different angles. PV-TAM shows that attention-based evaluation of localization is contaminated by the architecture’s own decoding process before measurement even begins. TGLG shows that task-completion scoring in video and multi-frame contexts cannot distinguish static pattern matching from genuine perceptual updating. Both critiques point to benchmarks that score models on tests designed for a simpler version of the problem than the one being deployed.

For practitioners using VLM benchmark rankings to make deployment decisions, the operative question is whether the models they are comparing are being scored on the same miscalibrated metric. If so, the relative ranking may hold even if absolute scores are inflated. If the miscalibration is not uniform across architectures, if some models are more vulnerable to decoding drift than others, for instance, then answer-side evaluation rankings could be systematically misleading about which model actually grounds its outputs in the visual input.

The full numeric results from arXiv:2606.23763 will determine how large that systematic error is. Until they are independently confirmed, the paper’s most durable contribution is the diagnostic: two named, architectural bias sources in standard VLM evaluation, with a proposed fix that shifts the measurement window to where the model is actually being directed.

Frequently Asked Questions

Does PV-TAM apply equally to all VLM architectures, or only those with shared token sequences?

The boundary-marker filter in PV-TAM is only relevant for architectures that embed image tokens and text tokens in a single unified context window with explicit separator tokens between them (the dominant design in current large VLMs such as LLaVA-style models). Models that process vision and language in separate encoder streams before late fusion would not exhibit boundary-marker bias, though they could still accumulate decoding drift from generated answer tokens. For those architectures, PV-TAM’s prompt-side shift reduces drift but the boundary filter has no effect.

If a model’s localization score rises after switching to PV-TAM, has its visual grounding actually improved?

No. PV-TAM corrects a measurement artifact, not a model capability. A higher score reflects that the prior evaluation was undercounting what the model already does, not any change since the last training run. This differs from VALOR’s approach, where training on 1M audiovisual-caption pairs produces a genuine capability gain on audio-visual tasks. For teams auditing model checkpoints: a PV-TAM score increase is a calibration event, not a training regression signal.

What infrastructure changes would a team need to capture prompt-side activation maps in practice?

Standard inference frameworks typically expose attention states during token generation, not during the prefill stage where PV-TAM measures. Capturing prompt-side maps requires either a custom forward-pass hook at the prefill step or a model-serving layer that stores attention states before generation begins. Evaluation harnesses that run VQA scoring entirely at the generation stage would need modification, and the boundary-marker filter requires identifying separator token IDs specific to each model’s tokenizer.

For which VLM task formats would decoding drift have the smallest effect on localization scores?

Tasks that require only a single-token answer, such as binary yes/no or forced-choice letter selection, accumulate the least drift because only one answer token exists before measurement. On these formats, prompt-side and answer-side attention maps diverge least, and PV-TAM’s correction would be smallest. The gap widens on tasks requiring multi-sentence generation before a spatial prediction, where drift has more tokens of accumulation time before the attention map is captured.

sources · 3 cited

  1. Listening makes Vision Clear for VLMs arxiv.org primary accessed 2026-06-25