Retrieval-Augmented Generation (RAG)¶
Definition
AI-generated
Retrieval-augmented generation couples a language model with a retriever over a document corpus (papers, manuals, database snippets) so that answers are conditioned on fetched evidence, reducing reliance on parametric memory alone.
Topics
Synonyms
Why it matters in GWAS¶
RAG-style pipelines can ground responses in local PDFs, methods supplements, or curated variant databases; retrieval quality and chunking still determine whether answers stay faithful to the cited sources.
Example usage¶
"We built a RAG index over the lab’s SOPs and GWAS QC wiki so the assistant could cite paragraph-level excerpts when answering trainee questions."
Related terms¶
References¶
- Lewis P, et al. (2020). Retrieval-augmented generation for knowledge-intensive NLP tasks. NeurIPS.
Last updated (UTC · Git history)