--- license: apache-2.0 task_categories: - question-answering - text-retrieval language: - en tags: - rag - retrieval-augmented-generation - multi-hop-reasoning - hotpotqa - information-retrieval - question-answering - evaluation size_categories: - 1K Hybrid retriever uses equal-weight (α=0.5) min-max normalized score fusion. ### Hybrid Retriever — By Question Type | Question Type | n | Recall@2 | MRR | NDCG@5 | |---------------|-----|----------|--------|--------| | bridge | 171 | 0.6696 | 0.9281 | 0.8418 | | comparison | 17 | 0.8824 | 0.9706 | 0.9473 | | yes-no | 12 | 0.8333 | 0.9167 | 0.9007 | **Key findings:** - Hybrid retrieval consistently outperforms sparse and dense individually across all metrics - Dense retrieval outperforms BM25 on all metrics, highlighting the importance of semantic matching for multi-hop questions - Bridge questions are the hardest retrieval type (Recall@2 = 0.67), as they require cross-document reasoning without strong lexical overlap - Comparison and yes-no questions benefit more from BM25's keyword matching (higher Recall@2) - Recall@5 of 0.905 for Hybrid shows that 90% of the time, both gold documents appear in the top 5 — a strong upper bound for downstream generation --- ## Limitations - **English only** — inherited from HotpotQA - **Wikipedia-domain** — all documents are Wikipedia paragraphs; may not generalize to other domains without adaptation - **2,200 total rows** — suitable for retriever evaluation and fine-tuning signal, not large-scale pretraining - **Gold position is fixed** — gold docs are always at indices 0 and 1. Shuffle `doc_pool` before training retrievers to avoid position bias ```python import random random.shuffle(row["doc_pool"]) # shuffle before use in training ``` --- ## Citation If you use StratRAG in your work, please cite: ```bibtex @dataset{patodiya2026stratrag, author = {Patodiya, Aryan}, title = {StratRAG: A Multi-Hop Retrieval Evaluation Dataset for RAG Systems}, year = {2026}, publisher = {Hugging Face}, url = {https://huggingface.co/datasets/Aryanp088/StratRAG} } ``` --- ## Author **Aryan Patodiya** — ML Systems Engineer MS Computer Science @ California State University, Fresno [Portfolio](https://aryanp-portfolio.netlify.app) · [GitHub](https://github.com/aryanpatodiya08) · aryanpatodiya018@gmail.com