Back to LLMs Mind Map
中文·English
LLMsID: hallucination-mitigation

Hallucination Mitigation

幻觉缓解
🎯Core Definition
hallucination mitigation is a toolbox of techniques for cutting fabricated content, on three main lines: (1) RAG — grounding generation on retrieved documents, the conditional becomes P(yx,z)P(y \mid x, z) with zz the retrieved evidence, plus requiring citations; (2) honest refusal — letting the model answer "I don't know" when uncertain, e.g. abstaining when the top-token confidence maxtpt<τ\max_t p_t < \tau; (3) uncertainty prompts — system prompts demanding the model state uncertainty, combined with self-consistency and verification-style generation to filter contradictions.
💡Use Cases
factual-critical products (customer support, QA, report generation); preventing RAG fabrication when retrieval is irrelevant; preventing agents from making up tool results; a favorite interview combo — how RAG + honest refusal + uncertainty prompts work together.
Key Problems Solved
internalized knowledge can't cover long-tail facts and models can't express ignorance on their own. RAG externalizes knowledge to verifiable evidence, honest refusal makes uncertainty explicit, and uncertainty prompts push models to abstain at low confidence — the three complement each other across "no evidence, no confidence, ambiguous instruction" scenarios.
🎯5 High-Frequency Exam Points
1
Why does RAG reduce hallucination, and how do you defend against irrelevant retrieval making it worse?
2
Implementing honest refusal: confidence thresholds, answerability classifiers, and abstain training data — how do you design each?
3
Why does self-consistency reduce reasoning hallucination, and what is the majority-vote formula?
4
What post-hoc verification methods exist, and how do you automatically check factual errors?
5
Evaluating mitigation: how do you measure the refusal-vs-helpfulness trade-off and tune false refusals?
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "Hallucination Mitigation"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardHallucination Types & CausesNext CardLong-Context Eval Needle/Lost-in-Middle

🔗 More LLMs Knowledge Cards

Agent & Tool CallingAlignment Tax & Preference DataScaled Dot-Product AttentionAttention Variants MHA/MQA/GQA