In words
What it is, why it matters, and what it is like.
Why am I learning this?
You are learning this because it is the most direct way a multimodal AI system — one that works with images, audio, or video alongside text — can fail. Before you can fix hallucination, you need to see exactly where the model's claims stop matching the evidence you gave it. This concept unlocks the rest of hallucination mitigation: why grounding beats instruction, why requiring citations makes fabrication detectable, why structured output constraints kill whole classes of invented format, and why teaching a system to abstain is often more valuable than forcing an answer. It also opens the door to the neighbouring topics in your library: Object Hallucination (the most studied form, where the model names things that aren't in the image) and Cross-Modal Drift (where the output sounds right for the general world, but not for this specific input). Without understanding grounding failures, every evaluation metric you later build will be measuring the wrong thing.
The idea, in plain terms
Imagine you are a detective looking at a photograph of a crime scene. The photo shows a kitchen table with a knife, a glass, and a plate. You write your report: 'The suspect held a revolver at the table.' There is no revolver in the photo. You have just produced a grounding failure — your words claim something the visual evidence does not support. A multimodal AI system (one that takes in both text and an image, or text and audio) does exactly this when it describes a picture or answers a question about it. Grounding means: every claim in the output should be traceable to something actually present in the non-text input. When the model's language is fluent and grammatically perfect, it is dangerously easy to miss that the content is about a thing that isn't there. Fluency and grammaticality are completely uncorrelated with grounding — a sentence can be polished and confident and still be about a ghost. The generated output itself is an evaluation surface: the text the model produces is not just an answer, it is also a place where you can look for claims and check them against the evidence. But you can't check automatically unless you build the system to make the check possible.
An analogy
Think of a tour guide showing a group around a museum. The guide is extremely articulate and knows a lot about art history. But imagine the guide describing a painting of a bowl of fruit and saying, 'Here we see the artist's famous depiction of a violin and a candle.' The actual painting shows fruit, no violin, no candle. The guide's words are fluent, confident, even beautiful — but they are not grounded in the painting. The group trusts the guide because the guide sounds so sure. Now, why does the guide do this? Because the guide has been trained on thousands of descriptions of paintings, and in many of those, violin-and-candle still lifes appear. The guide is letting prior knowledge override the current visual evidence. In AI terms, we call that a language prior. The model has seen so many captions that mention violins in the context of still lifes that the word 'violin' is highly probable, and the model says it even though this particular image shows none. The tour guide analogy breaks down in one important way: a human guide can be corrected with a quick 'Actually, look again,' and can learn from the mistake. An AI model does not learn from a single correction — that would require retraining or fine-tuning, which is expensive and slow. This is why grounding failures cannot be fixed by just telling the model 'don't hallucinate' at inference time. You have to change the system around the model: the evidence you give it, the constraints you impose, or the way you evaluate the output. The generated output is an evaluation surface — it's the place where you look for the failure, not inside the model's hidden weights — you can't open the model's head, but you can examine its words.
Definition
A multimodal grounding failure is any output from an AI system that makes a claim about the non-text input (image, audio, video) that is not actually supported by that input — the model says something is present, absent, or happening that the evidence does not confirm.
Where this sits
This concept is the umbrella under which two neighbouring topics in your library sit: Object Hallucination (naming objects that are not in the image) and Cross-Modal Drift (producing output that is plausible for the general training distribution but not for this specific input). Object hallucination is the most studied and most direct form — you give the model a picture of a cat, and it says 'dog.' Cross-Modal Drift is subtler: the description could fit many images, not just the one in front of it. Both are grounding failures. You already have notes on Large Language Models and Retrieval-Augmented Generation in your library — this concept builds on those because grounding failures in multimodal systems are often the same failure as in pure text, but with the additional twist that the evidence is non-textual and harder to automatically verify. Understanding this concept is the first step toward hallucination mitigation's core principle: grounding beats instruction. You cannot just tell the model 'don't invent things' — you have to give it the evidence and make the output checkable. The learner has mastered nothing yet, so this page stands alone for now, but it will connect to your future notes on evaluation metrics and guardrails.