FlashRAG Benchmark Datasets
FlashRAG is a research toolkit for running reproducible RAG experiments, and from a data point of view its standout asset is the bundle of benchmark datasets it standardises. It gathers many well-known evaluation sets, covering open-domain question answering, multi-hop reasoning (where the answer requires stitching together facts from several passages), fact verification, and more, then converts each one into a single consistent `JSONL` layout where every line is a self-contained JSON record.
That shared schema is the whole point. Because each benchmark exposes the same fields, you can swap one dataset for another without touching your data-loading code. The pre-processed datasets sit on HuggingFace and the toolkit itself lives on GitHub, so you can either pull a single benchmark or lean on the wider framework to run retrieval and generation over it. Beyond the question-answer sets, FlashRAG ships retrieval corpora too, such as a prepared Wikipedia dump, so you can measure a full pipeline from retriever to generator rather than just the answers.
This is the resource to reach for when you want to score a RAG system honestly against many benchmarks under identical conditions, compare retrieval strategies head to head, or reproduce the figures from a paper. It is built for evaluation and research, not for serving as a live production knowledge base.
Licensing is the caveat to respect. The toolkit code is MIT licensed, but every bundled dataset keeps its own original licence, and those differ from one another, so you cannot assume commercial use is permitted across the collection. Check the terms of any set you plan to redistribute or use beyond research, and think of the bundle as a convenient, unified mirror of existing benchmarks rather than a single re-licensed corpus.
It complements BEIR and KILT: where those hand you individual benchmarks, FlashRAG's contribution is putting a large slice of the field behind one format.
Related sources
CRAG (Comprehensive RAG Benchmark)
Meta's factual question answering benchmark of 4,409 QA pairs across five domains, paired with mock web-search and knowledge-graph retrieval APIs. It is distinct from "Corrective RAG (CRAG)", which is a retrieval method, not a dataset.
FinanceBench
A benchmark for evaluating LLMs and retrieval systems on questions about public financial filings. The full set holds 10,231 question, answer and evidence triplets; a 150 example sample is released openly.
FRAMES (Fact, Fetch, and Reason)
A Google evaluation set of 824 challenging questions that tests factuality, multi-hop retrieval and reasoning together, each paired with a gold answer and the Wikipedia articles needed to answer it. Built to measure end-to-end RAG.
Open RAGBench (Vectara)
A RAG evaluation benchmark from Vectara built on 1,000 arXiv papers, with multimodal content extraction and 3,045 question-and-answer pairs across scientific domains. Designed to test retrieval and answer quality on real research documents rather than short, simplified passages.