Skip to content
AI.info

Research

LookBack: Where and How to Score LVLM Responses via Visual Reference Usage

LookBack: Where and How to Score LVLM Responses via Visual Reference Usage Overview Research area: Large Vision-Language Models (LVLMs), inference-time response scoring, Best-of-N selection, and visua

arXiv
2608.11847
Published
2026-08-12
Authors
Beomsik Cho, Jinhyeong Kim, Dongseok Lee, Jaehyung Kim

AI summary

LookBack: Where and How to Score LVLM Responses via Visual Reference Usage

Overview

Research area: Large Vision-Language Models (LVLMs), inference-time response scoring, Best-of-N selection, and visual hallucination.

Technical level: Intermediate. The paper assumes familiarity with autoregressive language generation, attention over vision tokens, Best-of-N sampling, and standard multimodal benchmarks, but builds its method from elementary probability and entropy arguments.

Scope in one sentence: The paper diagnoses why confidence-based scorers borrowed from text-only LLMs fail to detect image-ungrounded LVLM responses, and proposes a training-free alternative that scores responses by how strongly each generated token's attention "looks back" to the image tokens.

What This Paper Is About

When an LVLM generates several candidate answers to the same image question, choosing the best one usually relies on the model's own output confidence. The authors show that this confidence signal is nearly blind to the image: deleting the input image barely changes either the confidence distribution or which candidate wins selection. Their goal is a scoring function that keeps the cheap, model-internal nature of confidence scoring while adding an explicit measure of whether the model actually consulted the image when producing each token.

Key Contributions

  1. A diagnostic of image insensitivity in output-space confidence. Using Self-Certainty (SC) on VQAv2 and CHAIR with LLaVA-1.5-7B and Qwen2.5-VL-7B, the authors show that SC scores with and without the input image overlap closely in shape and mean, and that image-present and image-absent scorers agree on the top-1 candidate at ratios of 0.36–0.64 against a random baseline of 1/N = 0.04.

  2. The visual lookback score. A token-level quantity equal to the fraction of attention directed from the prediction step for a generated token to the vision token positions, averaged over all attention layers and heads and computed from attention weights already produced during the standard generation forward pass.

  3. LookBack, a training-free response scorer. A token score that multiplies likelihood by a power of the lookback score, aggregated under a visual relevance distribution derived in closed form from an entropy-regularized relevance maximization (Proposition 1), requiring no auxiliary model, no training, and no extra inference passes.

  4. A Best-of-N evaluation across four benchmarks and three LVLMs. LookBack achieves the highest model-wise average for LLaVA-1.5-7B, Qwen2.5-VL-7B, and InternVL3-8B, with supporting ablation, scaling, robustness, human-preference, and overhead analyses.

Main Findings

  • Confidence is not image-sensitive. For each generated response, SC was computed with the image and without it. The two distributions are nearly identical in shape and mean across all model–benchmark combinations, and the two scorers select the same top-ranked candidate from N = 25 far more often than chance (0.36–0.64 versus 0.04).

  • Confidence and visual lookback capture opposite token types. A spaCy part-of-speech analysis on the same generated responses, splitting words into a visual set (nouns, proper nouns, adjectives, numerals) and a textual set (auxiliaries, determiners, pronouns, conjunctions), finds that visual-set words have above-average visual lookback score but below-average SC, while textual-set words show the reverse. SC is higher for linguistically predictable words; lookback is higher for visually referential ones.

  • The two signals rank responses differently. SC and the visual lookback score rarely agree on the top-1 response, with the lowest agreement ratio reaching 0.01, below the random baseline of 0.04.

  • LookBack wins on model-wise averages. Across the four benchmarks and both N = 5 and N = 25, LookBack improves over the strongest competing baseline by +1.31 on LLaVA-1.5-7B (over SC), +1.74 on Qwen2.5-VL-7B (over VAUQ), and +0.69 on InternVL3-8B (over USC). Reported average scores are 63.67 (LLaVA-1.5-7B), 69.91 (Qwen2.5-VL-7B), and 72.27 (InternVL3-8B), versus random-selection averages of 60.16, 66.95, and 69.00 respectively.

  • LookBack is not best on every individual cell. For InternVL3-8B on HallusionBench, LookBack scores 57.02 at N = 5 and 56.85 at N = 25, below USC (58.15, 58.38) and CLIPScore (59.39, 59.39). Its advantage is at the aggregate level.

  • Gains grow with the candidate budget. On HallusionBench from N = 1 to N = 25, LookBack keeps a consistent margin over all baselines on LLaVA-1.5-7B and Qwen2.5-VL-7B, while CLIPScore and VAUQ do not consistently benefit from larger candidate pools.

  • Both components are complementary. Ablating on AMBER with LLaVA-1.5-7B, increasing the token-level calibration strength helps only modestly when aggregation is uniform (λ = 0) but helps more when visually relevant tokens are weighted (λ = 1.5); increasing the aggregation sharpness helps when α = 0 but peaks at a moderate λ and declines when α = 7.

  • The gain depends on the actual image. Freezing the candidate set and replacing the image with a randomly sampled one (LLaVA-1.5-7B, N = 25) removes 90.0–112.5% of LookBack's gain over random selection, whereas SC retains roughly half of its gain on VQAv2 and is essentially unchanged on CHAIR.

  • Results are not hyperparameter-fragile. Under a single global setting (α, λ) = (0.25, 1.25) shared by every model and benchmark, LookBack still obtains the highest model-wise average on all three LVLMs, losing only 0.19 points relative to the reported per-model configuration.

  • Human annotators favor LookBack-selected responses. On CHAIR instances where LookBack and SC select different responses, annotators prefer the LookBack-selected response in 50.3% of judgments versus 35.0% for SC, while automatic CHAIR-F1 ties nearly half of those cases.

  • Overhead is modest. Post-generation scoring time in milliseconds per response on CHAIR across the three LVLMs shows LookBack adds only modest overhead and remains substantially cheaper than VAUQ and USC. The specific millisecond values appear only in a figure and are not stated numerically in the paper text.

Methodology in Plain English

The authors start with a suspicion rather than a method. They take a strong existing confidence scorer (Self-Certainty) and run it twice on the same generated responses — once with the image in the prompt and once with the image removed — then check whether the answers change. They do this on two benchmark families and two models, sampling 1,000 instances per benchmark and generating 25 candidate responses each with nucleus sampling.

Finding that confidence barely notices the image, they look for a different internal signal. Because LVLMs place the image as explicit vision tokens in the context, every generated token's attention weights contain a record of how much that prediction attended to those vision tokens. Averaging that fraction across all layers and heads gives a per-token "visual lookback score."

They then check whether this signal is meaningful by tagging the generated words with part-of-speech labels and grouping them into visually referential versus grammatically functional sets. The lookback score is high for content words and low for function words, exactly the opposite of confidence — evidence that the two signals measure different things.

The scoring method then combines them. Each token gets a score of its log-likelihood plus a scaled log-lookback term, so a token must be both probable and visually referenced to score well. To combine token scores into a single response score, the authors do not average uniformly; they build a weight distribution that concentrates on tokens with high lookback scores. Rather than choosing the weights by hand, they define an entropy-regularized objective rewarding high-lookback positions while penalizing a degenerate, overly sharp distribution, and show this has a closed-form solution proportional to the lookback score raised to a power λ. The final response score is the expected calibrated token score under that distribution, with α controlling per-token calibration and λ controlling response-level weighting, both set per model.

Evaluation is standard Best-of-N: for each image-question pair, sample N candidates, score them, pick the top one, and measure benchmark accuracy or F1. The method is compared against random selection, Self-Certainty, Universal Self-Consistency, CLIPScore, and VAUQ.

Why This Matters

Impact on research. The paper isolates a specific and previously under-examined failure mode: an LVLM can be conditioned on an image during generation while its output confidence remains largely insensitive to that image. Reframing the problem as a gap between image-conditioning and image-sensitivity gives the field a concrete diagnostic — score the same responses with and without the image and measure top-1 agreement — that can be applied to any future confidence-based scorer. It also provides a training-free, auxiliary-model-free point on the efficiency–grounding trade-off, sitting between pure output confidence and heavier vision-side evaluators.

Real-world applications:

  • Image-based assistance and accessibility interfaces, where a fluent but visually unsupported description of a scene could mislead a user who cannot verify it.
  • Educational tools that answer questions about diagrams, charts, or textbook figures, where selecting a visually grounded response over a plausible-sounding one matters for correctness.
  • Content analysis and moderation pipelines that need a lightweight way to prefer captions or descriptions actually supported by the accompanying image.
  • Resource-constrained deployments, since the method requires no additional model, no task-specific supervision, and no extra inference passes.

Industry relevance. Best-of-N selection is a practical deployment pattern for improving reliability without retraining. Because LookBack reuses likelihoods and attention weights already computed during generation, it is a cheap addition to existing inference stacks — the main engineering cost is exposing attention weights, which many serving frameworks already do. The measured overhead being below that of perturbation-based scorers such as VAUQ and of extra-pass selectors such as USC is directly relevant to latency-sensitive products. The limitation that the method requires internal attention weights also matters commercially: it cannot be applied to closed, API-only LVLMs.

Future Directions

  • Moving the score to generation time. LookBack ranks a completed candidate pool; the authors note that an inference-time variant would need to estimate online which generation steps require visual grounding, since the visual relevance distribution is currently defined over a finished response.

  • Extending beyond vision to other grounded sources. The same principle could apply whenever a response should be tied to a designated part of the context — retrieved documents in retrieval-augmented generation, tool outputs, or instruction tokens for prompt following.

  • Generalizing the evaluation regime. The current study covers image-grounded Best-of-N selection with relatively concise responses; the authors identify long-form multimodal reasoning, multi-image inputs, and video as open questions.

  • Understanding residual failure modes and architectural dependence. The authors report that residual errors concentrate on relational and comparative judgments, where the response names the right entities but misjudges how they compare, and note that the reliability of the lookback proxy may vary with model-specific attention behavior.

  • Addressing the black-box limitation. The method requires internal attention weights, and the authors leave open whether anything comparable can be recovered for LVLMs whose internals are not accessible.

Target Audience

Researchers and engineers working on multimodal model reliability, hallucination detection, and inference-time selection strategies will find the diagnostic analysis and the scoring formulation directly useful. Practitioners deploying LVLMs in latency-sensitive or resource-constrained settings will benefit from the efficiency comparison and the training-free framing. Readers interested in mechanistic interpretability of attention over vision tokens will find the part-of-speech analysis and the contrast between confidence and lookback informative. The paper is accessible to graduate students with basic familiarity with transformer attention and sampling-based decoding, but the entropy-regularized derivation and the benchmark suite assume some prior exposure to the vision-language evaluation literature.

Authors’ abstract

Large Vision-Language Models (LVLMs) integrate visual perception with language generation, enabling responses that span image understanding and complex reasoning. However, LVLMs do not just inherit the text-level hallucinations; they also hallucinate against the image, producing fluent responses ungrounded in what they see. This makes LVLM response scoring inherently harder, and our diagnostics show that existing confidence-based metrics adopted from LLMs are insufficient for LVLMs. Specifically, removing the input image barely changes confidence-based selection, suggesting that output-space confidence primarily captures textual plausibility rather than agreement with the image. To address this gap, we propose LookBack, a training-free LVLM response scoring method that augments token likelihood with visual lookback score, a lightweight measure of how strongly each response token refers to image tokens. Across four benchmarks and three models, LookBack consistently improves Best-of-$N$ selection over existing baselines with negligible additional overhead.

Read the original paper