Attribute Hallucination
Vision Model Detects Incorrect Attributes of Existing Objects
10 patterns for this goal
Vision-language models hallucinate objects, attributes, and entire scenes because they optimize for confident, contextually-plausible output rather than for grounding every claim in visible pixels — when evidence is weak, ambiguous, or architecturally unavailable (patch tokenization boundaries, rare-class underrepresentation, salient distractors), the model’s learned prior about “what’s typically here” overrides what’s actually in the frame, and it reports the prior with the same high confidence as a correct detection. Three of the ten patterns in visual hallucination are domain-specific instances of universal cross-cutting hallucination mechanisms; the other seven document vision-specific root causes — from patch-tokenization architecture to multi-step reasoning cascades — that don’t have a non-vision analogue.
Three patterns in visual hallucination — object-hallucination, attribute-hallucination, and confidence-miscalibration — are explicitly marked in their own files as domain-specific implementations of universal cross-cutting patterns (hallucination-object, hallucination-attribute, and hallucination-confidence-miscalibration, all rooted in a shared hallucination-base-mechanism in cross-cutting/accuracy), with sibling domain variants documented for document-processing and knowledge-retrieval. That shared lineage matters operationally: the same universal mitigations (confidence thresholding, ensemble cross-checks, human-in-the-loop routing for low-confidence output) apply whether the hallucination surfaces in a vision pipeline, a document-extraction pipeline, or a RAG answer. What’s unique to the vision instantiation is the input-side triggers — salience, patch-boundary loss, rare-class imbalance — that don’t have an equivalent in text-only domains. The multimodal-hallucination-cascade-across-reasoning-chain pattern shows why catching hallucination at the vision layer specifically (rather than downstream) matters most: once a hallucinated detail enters a reasoning chain, each subsequent step tends to increase confidence in the false premise rather than questioning it, so the cheapest point to intervene is the original vision-model call, not any later step.
object-hallucination is the general phenomenon of detecting anything not present in the image (15-25% of models in cluttered scenes); rare-object-false-positive is a specific, measured driver of it — classes with <1% training frequency are hallucinated 40% more often than common classes, because the model learns weak, spuriously-generalized features for underrepresented classes.
Patch-tokenization boundary failure is grouped in visual hallucination because the pattern produces hallucination-like symptoms (missed or fabricated content), but the root cause is different from the other patterns here: vision-model-patch-tokenization-boundary-failure is a hard information-loss limit of fixed-size patch tokenization, not a statistical-prior overreach. An object split across a 16×16 patch boundary genuinely lacks the pixel information needed for correct classification — no amount of confidence calibration fixes that; only repositioning, multi-scale processing, or overlapping crops do.
Per confidence-miscalibration, models are trained to optimize for accuracy, not calibration, and softmax naturally produces high probabilities — there’s no learned distinction between “correct with strong evidence” and “correct with weak evidence.” The lack of that distinction is why the confidence signal alone is an unreliable filter across every visual-hallucination pattern; a 95% confidence score can mean the same thing whether the underlying detection is genuine or hallucinated.
Per multimodal-hallucination-cascade-across-reasoning-chain, each downstream agent in a reasoning chain treats the prior step’s output as ground truth rather than a claim to verify, and confidence tends to increase (not decrease) at each step even though the entire chain is grounded in one upstream misperception — the documented examples show the cascade escalating from a misread chart or screenshot to unnecessary chemotherapy, a lost $50M deal, or an unnecessary production failover.
| Pattern | Mechanism |
|---|---|
| Attribute Hallucination | Model defaults to the statistically typical attribute (color/size/material) when lighting or occlusion makes the true attribute ambiguous |
| Confidence Miscalibration | Models optimize for accuracy, not calibration, so confidence stays high (miscalibrated by 20-40 points) regardless of true detection uncertainty |
| Multimodal Hallucination Cascade Across Reasoning Chain | A small initial VLM misperception is treated as fact by downstream reasoning steps, which amplify confidence in it rather than questioning it |
| Object Hallucination | Statistical priors about “what’s typically in this context” override weak or absent visual evidence, especially in clutter or low resolution |
| Rare Object False Positive | Long-tail training-data imbalance produces weak, spuriously-generalized features for underrepresented classes, inflating their false-positive rate |
| Salience Bias | Model learns shortcut correlations with visually salient features (bright color, high contrast) instead of true object shape/category |
| Scene Hallucination | Free-form scene captioning amplifies the model’s prior about typical scene composition, fabricating plausible context (people, activity) absent from the image |
| Training Data Leakage | Model memorizes spurious dataset-endemic correlations (e.g., “grass in background”) and hallucinates the correlations even when production data lacks that context |
| Vision Model Grid Cell Counting Failure | Patch tokenization misaligns with small grid-cell boundaries, causing systematic miscounts especially below 24px cell size |
| Vision Model Patch Tokenization Boundary Failure | Fixed-size patch tokenization genuinely loses information for objects, edges, or text spanning a patch boundary |
Total: 10 patterns
Vision Model Detects Incorrect Attributes of Existing Objects
Model Confidence Doesn't Match Hallucination Probability
Vision-language model hallucinates detail in image description; downstream reasoning steps amplify and compound hallucination, reaching absurd conclusions despite initial hallucination being small
Vision Model Detects Objects Not Present in Image
Model Detects Rare/Uncommon Objects Not Present in Image
Model Overemphasizes Visually Salient Features, Ignoring Context
Vision Model Detects Entire Scenes or Complex Contexts Not Present in Image
Model Hallucinates Training Data Artifacts, Overfitting to Dataset Biases
Vision-language models fail to accurately count grid cells in low-resolution or small-cell images; state-of-the-art models hallucinate counts at specific cell sizes
Vision-language models misinterpret visual boundaries because patch tokenization (dividing images into 14×14 or 16×16 pixel blocks) misaligns with semantic boundaries; objects split across patches create corrupted representations