Action-Marginalized Hallucination
- Action-marginalized hallucination is a phenomenon where models generate action outputs that are not grounded in the input data due to overreliance on scene priors and insufficient action cues.
- It manifests in diverse domains—world models, video captioning, static-image recognition, multimodal LLMs, and robotic policies—with detection metrics like the action-shuffle ratio and F1 scores highlighting its severity.
- Mitigation strategies include architectural disentanglement, auxiliary action heads, and coverage-aware sampling to reduce unsupported predictions and enhance model reliability.
Action-marginalized hallucination refers to systematic failures in which generative or recognition systems produce action-related outputs that are not fully grounded in the input data—either because relevant actions are physically impossible given the context, semantically unsupported by evidence, or effectively independent of intended input controls. This phenomenon underlies a diverse set of pathologies in world models, video captioning, action recognition from still images, multimodal LLMs, and embodied visual-language-action agents. It emerges from insufficient modulation of predictions by action or motion cues, intensive reliance on priors over scene context or appearance, or inadequate architectural disentanglement of spatiotemporal factors.
1. Formal Definitions and Taxonomy
The phenomenon of action-marginalized hallucination manifests variably across model classes:
- World Models: In action-conditional generative models, action-marginalized hallucination occurs when the predictive distribution for the next latent state, , becomes effectively independent of the action , degenerating to the action-marginal, (Hansen et al., 25 Jun 2026). This is operationally detected by comparing the model’s one-step prediction error under correct actions versus shuffled actions, with the action-shuffle ratio . Ratios near 1 signify severe action-marginalization.
- Video Captioning and Multimodal LLMs: Here, action hallucination denotes generating verbs describing actions not actually observed (Ullah et al., 2022, Chang et al., 4 Dec 2025). Models may “hallucinate” canonical actions (e.g., “cooking” in kitchen scenes) in the absence of supporting motion or visual cues.
- Static-Image Action Recognition: The action-marginalized prior is deliberately constructed as in Im2Flow, where the hallucinated motion field is trained to represent marginalized over all possible future actions for a given frame (Gao et al., 2017).
- Robot Policy Models: In vision-language-action policies, action hallucination is defined as the marginal probability that the generated action is infeasible or violates physical task constraints, i.e., (Soh et al., 6 Feb 2026).
- Video-LLMs: Action-scene hallucination encompasses cases where actions are predicted solely from scene priors or vice versa, often traceable to architectural mixing of spatial and temporal information (Bae et al., 20 Mar 2025).
2. Mechanistic and Empirical Causes
Action-marginalized hallucination arises due to several core factors:
- Insufficient State-Action Coverage: World models tend to ignore action inputs in sparsely represented state-action regions, as shown by the strong negative correlation () between local action-sensitivity () and visitation density (Hansen et al., 25 Jun 2026). This coverage gap renders next-state predictions action-agnostic.
- Architectural Entanglement: Video-LLMs that intermingle spatial and temporal tokens through all-to-all attention are prone to confounding scene and action predictions. The DST-attention mechanism in MASH-VLM blocks direct spatial-to-temporal interactions, reducing such failure modes (Bae et al., 20 Mar 2025).
- Structural Model Barriers: In robot policies, three barriers are formalized: (1) Topological (multi-modal action sets force “seams” of infeasible interpolations), (2) Precision (contact-rich tasks require concentration on low-dimensional manifolds), (3) Horizon (compounding small per-step error yields exponential plan-level hallucination) (Soh et al., 6 Feb 2026).
- Inadequate Dynamic Signal or Fusion: In video captioning, inappropriate fusion (e.g., overreliance on static scene features) or low-fidelity motion encoding underlies action hallucination (Ullah et al., 2022). Auxiliary action heads and context gates can mitigate this.
- Dominant Language Priors: Multimodal LLMs often prefer contextually likely actions, leading to hallucinations when such priors are not visually grounded (Chang et al., 4 Dec 2025).
3. Detection and Assessment Methodologies
Systematic measurement and identification of action-marginalized hallucination leverage task- and model-specific metrics:
| Modality/Task | Detection Metric or Protocol | Indication |
|---|---|---|
| World modeling | (action-shuffle ratio) on one-step MSE | |
| Video captioning | COAHA: sum of object and action hallucination scores, with 0 isolating action term (Ullah et al., 2022) | High 1 = action hallucination |
| Multimodal LLMs | HalFscore (precision/recall/F1 for verbs), FactVC, VidHal QA (Chang et al., 4 Dec 2025) | Low F1 = more hallucination |
| Video-LLMs | UNSCENE benchmark dual-question accuracy (Bae et al., 20 Mar 2025) | Low accuracy = scene/action confound |
| Robot policies | 2 (Soh et al., 6 Feb 2026) | High = policy frequently infeasible |
Quantitative reductions are reported: auxiliary action heads and context gates reduce COAHA from 10.57 to 7.02 on MSVD (33% drop, attributed in part to action hallucination) (Ullah et al., 2022). SANTA achieves F13 vs. baseline LLaVA-Video’s 27.5% (relative improvement +1.8 to +6.5 points on various benchmarks) (Chang et al., 4 Dec 2025). In generative world models, uniform-coverage sampling closes 4 gaps by 5 (Hansen et al., 25 Jun 2026).
4. Architectural and Algorithmic Mitigations
Mitigation strategies are specialized by modality:
- Action Grounding via Auxiliary Heads: Trained action classification heads refine motion representations, directly lowering the action-hallucination component in captioning tasks (Ullah et al., 2022).
- Feature Disentanglement: DST-attention in MASH-VLM forcibly disentangles spatial and temporal representations, halving scene-action confusion compared to all-causal attention (improving UNSCENE accuracy from 41.27% to 57.85%) (Bae et al., 20 Mar 2025).
- Contrastive Alignment with “Hard Negatives”: SANTA’s tracklet-phrase InfoNCE losses push model representations away from its own hallucinative outputs, discovered via self-augmentation (Chang et al., 4 Dec 2025). Hallucinative negatives are constructed by greedily sampling action verbs not present in the ground truth, and hard negative alignment minimizes spurious correlations.
- Data-Centric Cures: Balanced, coverage-aware sampling of underrepresented (state, action) pairs in world model pretraining addresses action-ignored regions without architectural changes (Hansen et al., 25 Jun 2026). Online, the action-shuffle ratio is used as a curiosity reward for planning trajectories to fill these gaps.
- Manifold-Aware Decoders and Iterative Projection: In robotics, projecting actions onto contact manifolds or iteratively refining with diffusion/flow models contract the action density away from forbidden sets (Soh et al., 6 Feb 2026).
- Objective Constraints and Regularization: Regularizers penalize decoded actions near forbidden regions, maintaining fidelity and multi-modality (Soh et al., 6 Feb 2026).
5. Benchmarks, Datasets, and Quantitative Evidence
Task-specific benchmarks have emerged to isolate action-marginalized hallucination:
- UNSCENE: 1,320 videos with dual-label QA to separately probe action-context and scene-context hallucination (Bae et al., 20 Mar 2025). MASH-VLM achieves state-of-the-art binary accuracy of 57.85% (vs. 41.27% for VideoChat2).
- COAHA: Tracks action/object components independently; auxiliary heads and gates yield 35–40% relative action-hallucination reduction (Ullah et al., 2022).
- VidHal, FactVC, MiraData-9k: Benchmark action (verb) precision, recall, F1. SANTA framework shows consistent gains: weighted F16 (vs. 35.9\% for prior model), VidHal action accuracy up to 85.8% (Chang et al., 4 Dec 2025).
- World Model Evaluation: 7 <= 1.1 flags ignored-action regions; adaptive coverage yields up to 90% of expert-demonstrator performance with only 50 targeted trajectories (Hansen et al., 25 Jun 2026).
6. Theoretical Barriers and Open Challenges
Despite improvements, several intrinsic barriers persist—particularly in generative visuomotor policies:
- Topological: Multi-modal action spaces force unavoidable “seams” of hallucinatory interpolation unless discrete mode conditioning is introduced.
- Precision: Full-dimensional decoders cannot concentrate mass on lower-dimensional feasible manifolds without infinite folding or contraction.
- Horizon compounding: Any fixed per-step error leads to exponential plan-level failure rates with horizon length.
- Scene bias and prior leakage: Scene-based priors (e.g., “kitchen” 8 “cooking”) persist even after disentanglement, with models still hallucinating plausible but unsupported actions in about 40–45% of atypical cases (Bae et al., 20 Mar 2025).
- Subtlety, occlusion, and event rarity: Short, fast, or heavily occluded actions remain challenging for all tested models.
A plausible implication is that further improvement will require architectural innovations that jointly integrate explicit mode selection, manifold parameterization, adaptive data acquisition, and more fine-grained fusion control.
7. Future Directions and Best Practice Recommendations
Best-practice recommendations for addressing action-marginalized hallucination, abstracted from empirical findings, include:
- Routinely track action-sensitivity via the action-shuffle ratio or analogous metric, per (state, action) slice (Hansen et al., 25 Jun 2026).
- Design architectures enforcing spatial–temporal disentanglement and gating, particularly in multi-stream or video-LLM settings (Bae et al., 20 Mar 2025).
- Incorporate auxiliary action heads and context-aware gates to prioritize motion cues at the point of verb prediction (Ullah et al., 2022).
- Apply self-augmentation and hard-negative contrastive alignment to expose and penalize the model’s own action hallucination tendencies (Chang et al., 4 Dec 2025).
- Leverage coverage-aware sampling and targeted data collection, guided by online action-hallucination diagnostics, to fill model blind spots with data-efficient interventions (Hansen et al., 25 Jun 2026).
- Adopt hierarchical, verification-guided planners in robotics to exponentially boost plan validity over long horizons (Soh et al., 6 Feb 2026).
Open research directions include more robust integration of multimodal cues (e.g., audio), dynamic masking or adaptive attention, continuous-time or higher-order positional embeddings, and loss functions that target cross-modal grounding for high-precision and rare actions. Persistent challenges in grounding subtle, rare, or contextually atypical actions underscore the need for continual progress in disentangled representation learning and structured generative modeling.