Your RAG is hallucinating because of garbage retrieval — here's the 3-line fix (with real scores)
Summary
A practical fix for RAG hallucination caused by noisy retrieval: use cross-encoder re-ranking to filter chunks with a score > 1.5, improving relevance from -0.28 to +3.80 on average.
Similar Articles
RAG hallucinations are annoying AF
The team discovered that 80% of RAG hallucinations were caused by poor retrieval, not the generation model, emphasizing the need to evaluate retrieval and generation separately to effectively debug bad answers.
@h100envy: This paper completely changed how I think about trusting retrieval in RAG: Fetch documents -> Score their quality -> Ge…
This paper presents a 5-step blueprint for improving trust in RAG by using a lightweight retrieval evaluator that scores document quality and triggers actions (correct, incorrect, ambiguous) to handle retrieval failures, with plug-and-play integration.
RAGless: Q-Q retrieval with score aggregation for closed-domain FAQ [P]
RAGless is a semantic retrieval system that matches user questions to pre-generated question variants for closed-domain FAQ, eliminating the LLM generation step in standard RAG for improved precision.
RAGognizer: Hallucination-Aware Fine-Tuning via Detection Head Integration
RAGognizer introduces a hallucination-aware fine-tuning approach that integrates a lightweight detection head into LLMs for joint optimization of language modeling and hallucination detection in RAG systems. The paper presents RAGognize, a dataset of naturally occurring closed-domain hallucinations with token-level annotations, and demonstrates state-of-the-art hallucination detection while reducing hallucination rates without degrading language quality.
Most agent RAG problems I see are retrieval problems, not model problems
The author argues that most agent RAG failures are due to retrieval problems—specifically chunking errors, lack of freshness signals, and reliance on pure vector search—rather than the LLM, and recommends structural chunking, decay-based ranking, and hybrid BM25+vector search.