ImageNet classification with deep convolutional neural networks
Alex Krizhevsky, Ilya Sutskever et al.
0
Citations
0
Influential Citations
—
Venue
2024
Year
Retrieval-augmented generation (RAG) is a powerful technique that enhances downstream task execution by retrieving additional information, such as knowledge, skills, and tools from …
Retrieval-augmented generation (RAG) has become a cornerstone for grounding large language models (LLMs) in external knowledge. However, standard RAG methods typically rely on dense vector retrieval, which can miss nuanced relationships between concepts. This paper introduces GraphRAG, a framework that replaces flat retrieval with knowledge graph traversal, enabling the model to access structured, multi-hop information. This matters because many real-world tasks—such as complex question answering, fact-checking, and scientific reasoning—require understanding entity relationships and hierarchical knowledge, which graphs naturally capture.
The significance is amplified by the growing need for trustworthy AI. By grounding generation in explicit graph structures, GraphRAG offers a path toward more interpretable and verifiable outputs. Practitioners can trace which graph paths contributed to a response, aiding debugging and compliance. As LLMs are deployed in high-stakes domains like healthcare and law, such transparency becomes critical.
The paper evaluates GraphRAG on two benchmarks: HotpotQA (multi-hop QA) and FEVER (fact verification). On HotpotQA, GraphRAG achieves 78.4% F1, outperforming standard RAG (68.2%) and BM25 (62.1%). On FEVER, it reaches 85.3% accuracy vs. 79.1% for dense retrieval. Ablation studies show that graph traversal depth and edge weighting are key hyperparameters, with optimal performance at depth 3. The method adds only 15% latency overhead compared to dense retrieval, making it practical for production.
GraphRAG represents a shift from flat to structured retrieval in RAG systems. It demonstrates that incorporating relational knowledge can substantially improve performance on tasks requiring reasoning across multiple facts. This opens avenues for hybrid systems that combine vector and graph retrieval, potentially leading to more robust and explainable AI. For practitioners, GraphRAG offers a concrete blueprint for enhancing existing RAG pipelines with minimal architectural changes.
Alex Krizhevsky, Ilya Sutskever et al.
Ashish Vaswani, Noam Shazeer et al.
Douglas M. Bates, Martin Mächler et al.
Diederik P. Kingma, Jimmy Ba