Back to AI Engineering Mind Map
中文·English
🤖 AI EngineeringID: self-rag-reflection

Self-RAG Reflection

Self-RAG 自省式反思检索
🎯Core Definition
Self-Reflective Retrieval-Augmented Generation (Self-RAG) is an adaptive framework that trains an LLM to autonomously decide when to retrieve, critique retrieval quality, and verify generation faithfulness; it operates via 4 special reflection tokens generated inline: `[Retrieve]` (decides if retrieval is necessary), `[IsREL]` (evaluates passage relevance), `[IsSUP]` (verifies if generated content is fully supported by evidence), and `[IsUSE]` (scores overall response utility), navigating optimal paths during beam search decoding.
💡Use Cases
Autonomous open-domain conversational systems, preventing wasteful retrieval on common-sense queries, and zero-tolerance hallucination QA pipelines.
Key Problems Solved
Naive RAG indiscriminately searches on every query, polluting straightforward prompts with irrelevant retrieval noise and blindly trusting corrupt passages; Self-RAG delivers adaptive on-demand retrieval and sentence-by-sentence self-critiqued grounding.
🎯5 High-Frequency Exam Points
1
Detail the generation conditions and evaluation dimensions of the 4 Self-RAG reflection tokens?
2
Explain the training pipeline of Critic and Generator models including synthetic reflection token annotation?
3
How does segment-level beam search leverage reflection token logit probabilities during inference generation?
4
Compare Self-RAG (internal model reflection) vs Agentic RAG (external state-machine loops) in latency and flexibility?
5
How does `[IsSUP]` enforce adherence to authoritative retrieved passages when they contradict internal parametric knowledge?
Updated 2026-08-14
🎯
Test Your Knowledge: Practice Questions for "Self-RAG Reflection"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardContextual CompressionNext CardCorrective RAG (CRAG)

🔗 More AI Engineering Knowledge Cards

Vector Distance Metrics & L2 NormalizationScalar Quantization (SQ8/SQ4)Product Quantization (PQ)ADC Asymmetric Distance Computation