← Latest papers
💬 NLP

Hallucinations and Truth: A Comprehensive Accuracy Evaluation of RAG, LoRA and DoRA

This paper presents a large-scale empirical evaluation of RAG, LoRA, and DoRA on 20,000 queries, demonstrating that DoRA outperforms both methods in accuracy, relevance, and latency for domain-specific generative AI applications.

Original authors: Mohammad Baqar, Rajat Khanda

Published 2026-07-31
📖 1 min read☕ Coffee break read

Original authors: Mohammad Baqar, Rajat Khanda

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Technical Summary: Hallucinations and Truth: A Comprehensive Accuracy Evaluation of RAG, LoRA and DoRA

1. Problem Statement

The rapid advancement of Generative AI has introduced significant challenges regarding factual consistency, specifically "hallucinations" (factually incorrect outputs), retrieval misalignment, and the trade-offs between computational cost and performance. While Retrieval-Augmented Generation (RAG) enhances factual accuracy by integrating external knowledge, it remains susceptible to errors if retrieval is flawed. Conversely, parameter-efficient fine-tuning methods like Low-Rank Adaptation (LoRA) offer cost-effective domain adaptation but may struggle with dynamic knowledge updates and contextual consistency in high-stakes domains. There is a critical need to empirically evaluate these approaches—RAG, LoRA, and the emerging Weight-Decomposed Low-Rank Adaptation (DoRA)—to determine their efficacy in balancing accuracy, latency, and scalability for real-world applications in healthcare, finance, and legal services.

2. Methodology

The study conducts a large-scale empirical evaluation comparing RAG, LoRA, and DoRA systems using a robust experimental framework:

  • Datasets:
    • Knowledge Base: 400,000 technical troubleshooting FAQs used for indexing (RAG) and fine-tuning (LoRA/DoRA).
    • Evaluation Set: 20,000 technical service tickets (FAQ-based queries) used to test generation performance and retrieval relevance.
  • System Configurations:
    • RAG: Utilized dense retrieval techniques (Dual Encoders, Approximate Nearest Neighbor search) and hybrid retrieval strategies (combining sparse BM25/TF-IDF with dense FAISS).
    • LoRA: Implemented low-rank matrix decomposition (ΔW=A×B\Delta W = A \times B) to fine-tune models with minimal parameter updates (freezing original weights).
    • DoRA: Applied weight decomposition to separate pre-trained weights into magnitude and direction components, using LoRA for directional updates to enhance learning capacity without inference overhead.
  • Evaluation Metrics:
    • Retrieval: Precision@1, Mean Reciprocal Rank (MRR), Normalized Discounted Cumulative Gain (NDCG), and F1-score.
    • Generation: Accuracy, Relevance Score, BLEU, ROUGE-L, and Hallucination Rate.
    • Efficiency: Inference latency (ms) and computational cost.

3. Key Contributions and Findings

A. Performance Superiority of DoRA

The study demonstrates that DoRA outperforms both standalone LoRA and RAG across critical metrics:

  • Accuracy: DoRA achieved 90.1%, surpassing LoRA (85.5%) and RAG (81.2%).
  • Relevance: DoRA scored 0.88, compared to 0.85 for LoRA and 0.84 for RAG.
  • Latency: DoRA exhibited the lowest inference latency at 110 ms per query, significantly faster than RAG (150 ms) and LoRA (120 ms).
  • Coverage: DoRA maintained a 98% coverage rate, retrieving relevant information more effectively than RAG (90%) and LoRA (95%).

B. Hallucination Mitigation

The research highlights a substantial reduction in hallucination rates through DoRA's structured parameter adaptation:

  • Broad Task Performance: DoRA reduced hallucination rates to 2.1%, a 38.2% improvement over RAG (3.4%) and a 63% improvement over LoRA (5.7%).
  • Complex Knowledge Retrieval: In specialized domains (Legal, Finance, Technical), DoRA achieved a hallucination rate of 4.39% (noted as 43.9 in the text table but contextually implies a reduction; the text states a 30.4% improvement over RAG's 5.6%), significantly outperforming RAG (5.6%) and LoRA (8.2%).
  • Mechanism: DoRA minimizes hallucinations by leveraging weight decomposition to refine parameter utilization while preserving high-confidence pre-trained knowledge, thereby reducing context misalignment and fabricated information.

C. Generative Quality

On the Stanford Question Answering Dataset (SQuAD), DoRA demonstrated superior text generation quality:

  • BLEU-4: 52.6 (vs. 47.8 for RAG, a +10.0% improvement).
  • ROUGE-L: 65.8 (vs. 59.7 for RAG, a +10.2% improvement).

D. Retrieval Optimization

The study evaluated various retrieval strategies within RAG systems, finding that Hybrid approaches (FAISS + LLaMA 3.1 re-ranking) yielded the highest precision (91% Precision@1) and MRR (0.92), outperforming traditional sparse methods (TF-IDF, BM25) and dense-only methods.

4. Significance and Claims

The paper claims that DoRA bridges the gap between parameter-efficient fine-tuning (PEFT) and full fine-tuning (FT), offering a balanced solution for accuracy-critical domains.

  • Practical Guidance: The findings provide actionable insights for deploying AI in high-stakes environments (healthcare, finance, legal), suggesting DoRA as the optimal choice for scenarios requiring both high precision and low latency.
  • Efficiency vs. Accuracy: While LoRA remains the most computationally efficient for resource-constrained static tasks, and RAG excels in dynamic knowledge retrieval, DoRA is presented as the superior compromise, reducing computational overhead while maximizing adaptation fidelity and minimizing hallucinations.
  • Scalability: The study asserts that DoRA's ability to handle large-scale, diverse datasets with reduced latency makes it highly scalable for enterprise-level knowledge management and real-time decision support.

5. Future Directions

The authors suggest that future research should focus on:

  • Integrating Reinforcement Learning from Human Feedback (RLHF) to further align model outputs with user expectations.
  • Expanding these systems to multimodal capabilities (text, images, video).
  • Developing lightweight architectures and modular fine-tuning strategies to further optimize cost-performance trade-offs.
  • Addressing ethical considerations, including bias mitigation and explainable AI, to ensure responsible deployment.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →