---
title: "Hybrid retrieval"
source: "https://systems-analysis.info/eng/Hybrid_retrieval"
wiki: "systems-analysis.info/eng"
article: "Hybrid_retrieval"
language: "en"
categories:
  - "Category:English"
  - "Category:Large language models"
  - "Category:Prompt engineering"
  - "Category:Technology"
revision_id: 186
wiki_created_at: 2026-09-06T22:18:37Z
wiki_modified_at: 2026-09-06T22:18:37Z
downloaded_at: 2026-09-07T22:21:41Z
---

# Hybrid retrieval

**Hybrid Retrieval** (hybrid search) is a class of information retrieval methods that combine lexical (sparse) and semantic (dense/late-interaction) signals to improve the recall and precision of search results. Hybrid schemes leverage the advantages of exact term matching (BM25/TF-IDF) and vector similarity (bi-[encoders](https://systems-analysis.info/eng/Encoder_(Transformer) "Encoder (Transformer)"), late-interaction models), while also using methods for rank fusion that are robust to different score scales (e.g., Reciprocal Rank Fusion, CombSUM/CombMNZ) and reranking with cross-encoders.<sup>[\[1\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-1)[\[2\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-2)[\[3\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-3)</sup>

## Definition and Motivation

*Hybrid retrieval* is a parallel or cascaded search process across two (or more) independent signal channels, followed by fusion and/or reranking. Typical motivations include: (i) overcoming the "vocabulary mismatch" problem (synonyms, paraphrasing), (ii) robustness to typos and morphology, (iii) retrieving specific codes or identifiers (where sparse models excel), and (iv) transferring to new domains or languages (where dense models provide semantic generalization).<sup>[\[4\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-4)[\[5\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-5)[\[6\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-6)</sup>

## Components of Hybrid Search

### Lexical (sparse)

- **Classical models.** TF-IDF and BM25/BM25F are standard baseline methods based on inverted indexes; BM25 is grounded in the probabilistic relevance framework (PRF) and is widely used for first-stage ranking.<sup>[\[7\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-7)</sup>
- **Learned sparse models.**
  - **SPLADE / SPLADE++/v3.** A neural sparse model that learns term expansion and weighting via an MLM head with sparsity regularization; it demonstrates strong results and good transferability (BEIR).<sup>[\[8\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-8)[\[9\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-9)[\[10\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-10)</sup>
  - **uniCOIL/COIL.** Contextualized inverted lists and their simplified version, *uniCOIL*; they are compatible with classic inverted indexes.<sup>[\[11\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-11)</sup>

### Semantic (dense/late-interaction)

- **Bi-encoder (single-vector).** The query and document are encoded by vector models, and similarity is calculated using dot-product/MIPS. Examples: DPR,<sup>[\[12\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-12)</sup> ANCE,<sup>[\[13\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-13)</sup> Contriever,<sup>[\[14\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-14)</sup> GTR,<sup>[\[15\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-15)</sup> E5.<sup>[\[16\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-16)</sup>
- **Late-interaction (multi-vector).** These models capture [token](https://systems-analysis.info/eng/Token_(LLM) "Token (LLM)")-level interactions at a 'late' stage: ColBERT/ColBERTv2. The trade-off is higher precision for a larger index and greater latency, which is mitigated by engineering drivers like PLAID and WARP.<sup>[\[17\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-17)[\[18\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-18)[\[19\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-19)</sup>

## Hybridization Schemes and Rank Fusion

- **Parallel search and candidate fusion.** Candidate lists (sparse and dense) with their internal scores are retrieved independently, followed by rank fusion.<sup>[\[20\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-20)</sup>
- **RRF (Reciprocal Rank Fusion).** A technique robust to incomparable ranking scores that sums reciprocal ranks:

${RRF}(d) = \sum\limits_{i = 1}^{m}\frac{1}{k + {rank}_{i}(d)}$, where typically $k \approx 60$.<sup>[\[21\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-21)</sup> Supported in production search engines (Elasticsearch/OpenSearch) as a built-in retriever/processor.<sup>[\[22\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-22)[\[23\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-23)</sup>

- **CombSUM/CombMNZ et al.** Classic 'score summation' functions (with normalization, if needed).<sup>[\[24\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-24)[\[25\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-25)[\[26\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-26)</sup>
- **Weighted linear combination.**

$S(d) = \alpha \cdot S_{\text{sparse}}(d) + (1 - \alpha) \cdot S_{\text{dense}}(d)$, $\alpha \in \lbrack 0,1\rbrack$. The choice of $\alpha$ can be fixed or learned (per-collection or per-query).<sup>[\[27\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-27)</sup>

- **Score normalization.** For CombSUM/CombMNZ, methods like min-max or z-score are often used to align scales;<sup>[\[28\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-28)</sup> alternatively, RRF relies only on ranks.
- **Dynamic/adaptive weighting.** Query routing, query features, and LTR models for selecting/weighting channels; recent work shows that a simple learned combination often outperforms RRF and is less sensitive to normalization.<sup>[\[29\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-29)</sup>

## Reranking and Multi-Stage Pipelines

Hybrid systems are typically built as *retrieval → fusion → rerank* pipelines. Reranking is performed using:

- **Cross-encoders ([BERT](https://systems-analysis.info/eng/BERT_(language_model) "BERT (language model)")/[T5](https://systems-analysis.info/eng/T5_(Text-to-Text_Transfer_Transformer) "T5 (Text-to-Text Transfer Transformer)")).** The most accurate but computationally expensive: MonoBERT/MonoT5 for reordering the top-N candidates.<sup>[\[30\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-30)[\[31\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-31)</sup>
- **Late-interaction as a reranker.** The ColBERT family can also act as a reranker; modern accelerators (PLAID, WARP) reduce latency without quality loss.<sup>[\[32\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-32)[\[33\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-33)</sup>

The *quality ↔ latency/cost* trade-off is particularly important in [RAG](https://systems-analysis.info/eng/Retrieval-augmented_generation_(RAG) "Retrieval-augmented generation (RAG)") applications and under strict SLAs (see p95/p99 tail latencies).<sup>[\[34\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-34)</sup>

## Evaluation on Benchmarks

- **BEIR.** A unified set of heterogeneous collections/tasks for [zero-shot](https://systems-analysis.info/eng/Few-Shot_and_Zero-Shot_Learning "Few-Shot and Zero-Shot Learning")/out-of-domain evaluation of retrievers (e.g., TREC‑COVID, NFCorpus, NQ, HotpotQA, FiQA‑2018, DBPedia-entity, ArguAna, Webis-Touché-2020, FEVER/Climate-FEVER, Scidocs, SciFact, CQADupStack, etc.).<sup>[\[35\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-35)</sup>
- **TREC Deep Learning / MS MARCO.** Classic resources for training/evaluating retrievers and rerankers on large-scale data.<sup>[\[36\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-36)[\[37\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-37)[\[38\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-38)</sup>
- **[Quality metrics](https://systems-analysis.info/eng/LLM_quality_metrics "LLM quality metrics").** nDCG@k, Recall@k, MRR; for performance: latency p50/p95/p99, QPS; for operations: memory/cost (CPU/GPU, index).<sup>[\[39\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-39)[\[40\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-40)</sup>
- **Ablation studies.** It is recommended to measure the contribution of each channel/weight and the sensitivity to parameters like $k$ in RRF and $\alpha$ in linear combination; evaluate robustness to paraphrasing and OOD shifts.<sup>[\[41\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-41)[\[42\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-42)</sup>

## Engineering Aspects and Production Practices

- **Indexes and ANN.** FAISS (Flat/HNSW/IVF-PQ), HNSW, and ScaNN for MIPS/cosine similarity.<sup>[\[43\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-43)[\[44\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-44)[\[45\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-45)</sup>
- **IR Stack.** Lucene/Anserini/Pyserini for sparse, dense, and hybrid pipelines; 'turnkey' reproducibility on BEIR.<sup>[\[46\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-46)[\[47\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-47)</sup>
- **[Vector Databases](https://systems-analysis.info/eng/Vector_database "Vector database") and Search Engines.** Qdrant, Weaviate, pgvector/PostgreSQL, Vespa, and Elasticsearch/OpenSearch have native modes for hybrid search (BM25F+vector) and/or RRF/linear combination.<sup>[\[48\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-48)[\[49\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-49)[\[50\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-50)[\[51\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-51)[\[52\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-52)</sup>
- **RAG Pattern.** Architecture: **retrieval → fusion → rerank → [LLM](https://systems-analysis.info/eng/Large_language_model "Large language model") context** with token limits and source tracing.<sup>[\[53\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-53)</sup>
- **Index updates, deduplication, [tokenization](https://systems-analysis.info/eng/Tokenization_(NLP) "Tokenization (NLP)").** It is important to align tokenization between BM25 and the vectorizer; scores should be calibrated (normalized/scaled) before fusion.<sup>[\[54\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-54)</sup>

## Limitations and Open Questions

- **Transferability and Multilingualism.** Dense models (GTR/E5) improve transfer but are sensitive to domain/language; sparse models (SPLADE) are often more robust on OOD.<sup>[\[55\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-55)[\[56\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-56)</sup>
- **Integration with LLMs and [Hallucinations](https://systems-analysis.info/eng/LLM_hallucinations "LLM hallucinations").** Hybrid retrieval reduces omissions and noise in RAG contexts but does not completely eliminate hallucinations, requiring strict rerankers and source filtering.<sup>[\[57\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-57)</sup>
- **Cost and Privacy.** Storage of multi-vector indexes, compression, encryption, and on-premise stacks; TCO assessment.
- **Trends.** [HyDE](https://systems-analysis.info/eng/Hypothetical_Document_Embeddings_(HyDE) "Hypothetical Document Embeddings (HyDE)")/doc2query/PRF as document/query expansion;<sup>[\[58\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-58)[\[59\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-59)</sup> learning to blend (per-query $\alpha$), more efficient late-interaction models (PLAID/WARP), long documents, and multi-vector indexes.<sup>[\[60\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-60)[\[61\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-61)</sup>

## Comparative Table of Methods

As of 2025-09-10 (example on the BEIR *trec-covid* collection; nDCG@10 / Recall@100):<sup>[\[62\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-62)</sup>

| Method                                                                                   | Type (sparse/dense/hybrid) | Concept/Model                                                                                                | Fusion Scheme                      | Reranker             | nDCG@10 / R@100                                              | Latency (rel.) | Sources                                                                                                                                                                                                                                |
|------------------------------------------------------------------------------------------|----------------------------|--------------------------------------------------------------------------------------------------------------|------------------------------------|----------------------|--------------------------------------------------------------|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| BM25                                                                                     | sparse                     | Exact term matching (PRF/BM25)                                                                               | —                                  | —                    | 0.595 / 0.109                                                | very low       | <sup>[\[63\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-63)[\[64\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-64)</sup>                                                                          |
| SPLADE++ (ED)                                                                            | sparse (learned)           | Sparse term expansion/weighting                                                                              | —                                  | —                    | 0.727 / 0.128                                                | low–medium     | <sup>[\[65\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-65)[\[66\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-66)</sup>                                                                          |
| Contriever (MS MARCO FT)                                                                 | dense                      | Bi-encoder with contrastive learning                                                                         | —                                  | —                    | 0.596 / 0.091                                                | medium         | <sup>[\[67\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-67)[\[68\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-68)</sup>                                                                          |
| BGE-base-en-v1.5                                                                         | dense                      | Strong general-purpose embedder                                                                              | —                                  | —                    | 0.781 / 0.141                                                | medium         | <sup>[\[69\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-69)</sup>                                                                                                                                                   |
| [Cohere](https://systems-analysis.info/eng/Cohere_Inc. "Cohere Inc.") embed-english-v3.0 | dense                      | Production-grade text [embedding](https://systems-analysis.info/eng/Embedding_(NLP) "Embedding (NLP)") model | —                                  | —                    | 0.818 / 0.159                                                | medium         | <sup>[\[70\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-70)</sup>                                                                                                                                                   |
| BM25 + dense (e.g., BM25+BGE)                                                            | hybrid                     | Parallel retrieval + list fusion                                                                             | RRF (k≈60) or weighted combination | opt.: MonoT5/ColBERT | (varies by implementation; typically \> best single channel) | medium         | <sup>[\[71\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-71)[\[72\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-72)[\[73\]](https://systems-analysis.info/eng/Hybrid_retrieval#cite_note-73)</sup> |

Comparison of methods on *trec-covid*

Note: The last row illustrates the scheme; exact numbers depend on the choice of embedder, normalization, and fusion parameters (see sources and reproducible Pyserini scripts).

## External links

- Pyserini / Anserini: <a href="https://github.com/castorini/pyserini" class="external text" rel="nofollow">github.com/castorini/pyserini</a> • <a href="https://github.com/castorini/anserini" class="external text" rel="nofollow">github.com/castorini/anserini</a>
- FAISS: <a href="https://arxiv.org/abs/1702.08734" class="external text" rel="nofollow">arXiv:1702.08734</a>
- Weaviate (Hybrid search): <a href="https://docs.weaviate.io/weaviate/search/hybrid" class="external text" rel="nofollow">docs.weaviate.io/weaviate/search/hybrid</a>
- pgvector: <a href="https://github.com/pgvector/pgvector" class="external text" rel="nofollow">github.com/pgvector/pgvector</a>
- Vespa (Hybrid search tutorial): <a href="https://docs.vespa.ai/en/tutorials/hybrid-search.html" class="external text" rel="nofollow">docs.vespa.ai/en/tutorials/hybrid-search.html</a>
- <a href="https://en.wikipedia.org/wiki/Retrieval-augmented_generation#Hybrid_search" class="external text" rel="nofollow">Hybrid search — Wikipedia</a>

## Literature

- Manning, C.D., Raghavan, P., Schütze, H. (2008). *Introduction to Information Retrieval*. Cambridge University Press. ISBN 978‑0521865715.
- Robertson, S., Zaragoza, H. (2009). *The Probabilistic Relevance Framework: BM25 and Beyond*. Foundations and Trends in Information Retrieval 3(4):333–389. DOI:10.1561/1500000019.
- Lin, J. et al. (2021). *Pyserini: A Python Toolkit for Reproducible IR*. SIGIR.
- Järvelin, K., Kekäläinen, J. (2002). *Cumulated Gain‑Based Evaluation of IR Techniques*. Information Retrieval 6:241–256. DOI:10.1023/A:1016043826386.
- Dean, J., Barroso, L.A. (203). *The Tail at Scale*. CACM 56(2):74–80. DOI:10.1145/2408776.2408794.

## References

1.  <span id="cite_note-1">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-1) Robertson, S., Zaragoza, H. (2009). *The Probabilistic Relevance Framework: BM25 and Beyond*. Foundations and Trends in Information Retrieval, 3(4), 333–389. DOI:10.1561/1500000019.</span>
2.  <span id="cite_note-2">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-2) Cormack, G.V., Clarke, C.L.A., Büttcher, S. (2009). *Reciprocal Rank Fusion Outperforms Condorcet and Individual Rank Learning Methods*. SIGIR 2009, 758–759. <a href="https://cormack.uwaterloo.ca/cormacksigir09-rrf.pdf" class="external text" rel="nofollow">PDF</a>.</span>
3.  <span id="cite_note-3">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-3) Bruch, S., Gai, S., Ingber, A. (2023). *An Analysis of Fusion Functions for Hybrid Retrieval*. ACM TOIS 42(1):1–35. DOI:10.1145/3596512 • arXiv:2210.11934.</span>
4.  <span id="cite_note-4">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-4) Manning, C.D., Raghavan, P., Schütze, H. (2008). *Introduction to Information Retrieval*. Cambridge University Press. ISBN 978‑0521865715 (see chapters on TF‑IDF, evaluation, and the *vocabulary mismatch* problem).</span>
5.  <span id="cite_note-5">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-5) Izacard, G. et al. (2022). *Unsupervised Dense Information Retrieval with Contrastive Learning (Contriever)*. TACL 10:1089–1108. arXiv:2112.09118.</span>
6.  <span id="cite_note-6">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-6) Wang, L. et al. (2022/2024). *Text Embeddings by Weakly‑Supervised Contrastive Pre‑training (E5)*. arXiv:2212.03533.</span>
7.  <span id="cite_note-7">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-7) Robertson, S., Zaragoza, H. (2009). *The Probabilistic Relevance Framework: BM25 and Beyond*. DOI:10.1561/1500000019.</span>
8.  <span id="cite_note-8">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-8) Formal, T., Piwowarski, B., Clinchant, S. (2021). *SPLADE: Sparse Lexical and Expansion Model for First Stage Ranking*. arXiv:2107.05720.</span>
9.  <span id="cite_note-9">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-9) Formal, T. et al. (2022). *Making Sparse Neural IR Models More Effective*. Findings of EMNLP. arXiv:2205.04733.</span>
10. <span id="cite_note-10">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-10) Formal, T. et al. (2024). *SPLADE‑v3: New baselines for SPLADE*. arXiv:2403.06789.</span>
11. <span id="cite_note-11">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-11) Lin, J., Ma, X. (2021). *A Few Brief Notes on DeepImpact, COIL, and uniCOIL*. arXiv:2106.14807.</span>
12. <span id="cite_note-12">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-12) Karpukhin, V. et al. (2020). *Dense Passage Retrieval for Open‑Domain QA*. EMNLP. arXiv:2004.04906.</span>
13. <span id="cite_note-13">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-13) Xiong, L. et al. (2021). *Approximate Nearest Neighbor Negative Contrastive Learning for Dense Text Retrieval (ANCE)*. ICLR. arXiv:2007.00808.</span>
14. <span id="cite_note-14">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-14) Izacard, G. et al. (2022). TACL. arXiv:2112.09118.</span>
15. <span id="cite_note-15">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-15) Ni, J. et al. (2021/2022). *Large Dual Encoders Are Generalizable Retrievers (GTR)*. EMNLP. arXiv:2112.07899.</span>
16. <span id="cite_note-16">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-16) Wang, L. et al. (2022/2024). arXiv:2212.03533.</span>
17. <span id="cite_note-17">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-17) Khattab, O., Zaharia, M. (2020). *ColBERT: Efficient and Effective Passage Search via Contextualized Late Interaction over BERT*. SIGIR. arXiv:2004.12832.</span>
18. <span id="cite_note-18">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-18) Santhanam, K. et al. (2022). *ColBERTv2 & PLAID*. NAACL/ArXiv. arXiv:2112.01488; arXiv:2205.09707.</span>
19. <span id="cite_note-19">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-19) Scheerer, J.L. et al. (2025). *WARP: An Efficient Engine for Multi‑Vector Retrieval*. arXiv:2501.17788.</span>
20. <span id="cite_note-20">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-20) Lin, J. et al. (2021). *Pyserini: A Python Toolkit for Reproducible IR with Sparse and Dense Representations*. SIGIR. <a href="https://cs.uwaterloo.ca/~jimmylin/publications/Lin_etal_SIGIR2021_Pyserini.pdf" class="external text" rel="nofollow">PDF</a>.</span>
21. <span id="cite_note-21">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-21) Cormack, G.V., Clarke, C.L.A., Büttcher, S. (2009). SIGIR. <a href="https://cormack.uwaterloo.ca/cormacksigir09-rrf.pdf" class="external text" rel="nofollow">PDF</a>.</span>
22. <span id="cite_note-22">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-22) Elastic Docs. *Reciprocal Rank Fusion*. (accessed 2025‑09‑10). <a href="https://www.elastic.co/docs/reference/elasticsearch/rest-apis/reciprocal-rank-fusion" class="external text" rel="nofollow">elastic.co/docs/.../reciprocal-rank-fusion</a>.</span>
23. <span id="cite_note-23">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-23) OpenSearch Docs. *Score ranker processor (RRF)*. (accessed 2025‑09‑10). <a href="https://docs.opensearch.org/3.0/search-plugins/search-pipelines/score-ranker-processor/" class="external text" rel="nofollow">docs.opensearch.org/.../score-ranker-processor/</a>.</span>
24. <span id="cite_note-24">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-24) Fox, E.A., Shaw, J.A. (1994). *Combination of Multiple Searches*. TREC‑2, NIST SP 500‑215, 243–252. <a href="https://www.khoury.northeastern.edu/home/jaa/CSG339.06F/resources/fox94combination.pdf" class="external text" rel="nofollow">PDF</a>.</span>
25. <span id="cite_note-25">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-25) Lee, J.H. (1997). *Analyses of Multiple Evidence Combination*. SIGIR, 267–276. DOI:10.1145/258525.258587.</span>
26. <span id="cite_note-26">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-26) Hsu, D.F., Taksa, I. (2005). *Comparing Rank and Score Combination Methods for Data Fusion in IR*. (Tech. report). <a href="https://ccc.inaoep.mx/~villasen/bib/Hsu-FusionInIR07.pdf" class="external text" rel="nofollow">PDF</a>.</span>
27. <span id="cite_note-27">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-27) Bruch, S., Gai, S., Ingber, A. (2023). TOIS. DOI:10.1145/3596512.</span>
28. <span id="cite_note-28">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-28) Hsu, D.F., Taksa, I. (2005). See above.</span>
29. <span id="cite_note-29">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-29) Bruch, S., Gai, S., Ingber, A. (2023). TOIS. DOI:10.1145/3596512.</span>
30. <span id="cite_note-30">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-30) Nogueira, R., Cho, K. (2019). *Passage Re‑ranking with BERT*. arXiv:1901.04085.</span>
31. <span id="cite_note-31">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-31) Nogueira, R., Jiang, Z., Lin, J. (2020). *Document Ranking with a Pretrained Sequence‑to‑Sequence Model (MonoT5)*. Findings of EMNLP. arXiv:2003.06713.</span>
32. <span id="cite_note-32">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-32) Santhanam, K. et al. (2022). arXiv:2205.09707.</span>
33. <span id="cite_note-33">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-33) Scheerer, J.L. et al. (2025). arXiv:2501.17788.</span>
34. <span id="cite_note-34">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-34) Dean, J., Barroso, L.A. (2013). *The Tail at Scale*. CACM 56(2):74–80. DOI:10.1145/2408776.2408794.</span>
35. <span id="cite_note-35">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-35) Thakur, N. et al. (2021). *BEIR: A Heterogeneous Benchmark for Zero‑shot Evaluation of IR Models*. NeurIPS Datasets & Benchmarks. arXiv:2104.08663.</span>
36. <span id="cite_note-36">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-36) Craswell, N. et al. (2020). *Overview of the TREC 2019 Deep Learning Track*. arXiv:2003.07820.</span>
37. <span id="cite_note-37">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-37) Craswell, N. et al. (2021). *Overview of the TREC 2020 Deep Learning Track*. arXiv:2102.07662.</span>
38. <span id="cite_note-38">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-38) Bajaj, P. et al. (2016). *MS MARCO: A Human Generated MAchine Reading COmprehension Dataset*. arXiv:1611.09268.</span>
39. <span id="cite_note-39">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-39) Järvelin, K., Kekäläinen, J. (2002). *Cumulated Gain‑Based Evaluation of IR Techniques*. Information Retrieval 6:241–256. DOI:10.1023/A:1016043826386.</span>
40. <span id="cite_note-40">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-40) Dean, J., Barroso, L.A. (2013). CACM. DOI:10.1145/2408776.2408794.</span>
41. <span id="cite_note-41">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-41) Bruch, S. et al. (2023). DOI:10.1145/3596512.</span>
42. <span id="cite_note-42">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-42) Ni, J. et al. (2021/2022). arXiv:2112.07899.</span>
43. <span id="cite_note-43">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-43) Johnson, J., Douze, M., Jégou, H. (2017). *Billion‑scale Similarity Search with GPUs (FAISS)*. arXiv:1702.08734.</span>
44. <span id="cite_note-44">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-44) Malkov, Y., Yashunin, D. (2020). *HNSW*. IEEE TPAMI 42(4):824–836. DOI:10.1109/TPAMI.2018.2889473.</span>
45. <span id="cite_note-45">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-45) Guo, R. et al. (2020). *ScaNN: Efficient Vector Similarity Search at Scale*. arXiv:1908.10396.</span>
46. <span id="cite_note-46">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-46) Yang, P., Fang, H., Lin, J. (2018). *Anserini: Reproducible IR Research with Lucene*. JDIQ 10(4):1–20. DOI:10.1145/3239571.</span>
47. <span id="cite_note-47">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-47) Lin, J. et al. (2021). SIGIR. <a href="https://cs.uwaterloo.ca/~jimmylin/publications/Lin_etal_SIGIR2021_Pyserini.pdf" class="external text" rel="nofollow">PDF</a>.</span>
48. <span id="cite_note-48">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-48) Qdrant Docs. *Hybrid queries (RRF, DBSF)*. (accessed 2025‑09‑10). <a href="https://qdrant.tech/documentation/concepts/hybrid-queries/" class="external text" rel="nofollow">qdrant.tech/.../hybrid-queries/</a>.</span>
49. <span id="cite_note-49">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-49) Weaviate Docs. *Hybrid search*. (accessed 2025‑09‑10). <a href="https://docs.weaviate.io/weaviate/search/hybrid" class="external text" rel="nofollow">docs.weaviate.io/weaviate/search/hybrid</a>.</span>
50. <span id="cite_note-50">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-50) pgvector GitHub. (accessed 2025‑09‑10). <a href="https://github.com/pgvector/pgvector" class="external text" rel="nofollow">github.com/pgvector/pgvector</a>.</span>
51. <span id="cite_note-51">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-51) Vespa Docs. *Hybrid Text Search Tutorial*. (accessed 2025‑09‑10). <a href="https://docs.vespa.ai/en/tutorials/hybrid-search.html" class="external text" rel="nofollow">docs.vespa.ai/.../hybrid-search.html</a>.</span>
52. <span id="cite_note-52">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-52) Elastic Docs. *Reciprocal Rank Fusion*. (accessed 2025‑09‑10). <a href="https://www.elastic.co/docs/reference/elasticsearch/rest-apis/reciprocal-rank-fusion" class="external text" rel="nofollow">elastic.co/docs/.../rrf</a>.</span>
53. <span id="cite_note-53">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-53) Lewis, P. et al. (2020). *Retrieval‑Augmented Generation for Knowledge‑Intensive NLP Tasks*. NeurIPS. arXiv:2005.11401.</span>
54. <span id="cite_note-54">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-54) Hsu, D.F., Taksa, I. (2005). See above.</span>
55. <span id="cite_note-55">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-55) Ni, J. et al. (2021/2022). arXiv:2112.07899.</span>
56. <span id="cite_note-56">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-56) Formal, T. et al. (2021, 2022, 2024). arXiv:2107.05720; 2205.04733; 2403.06789.</span>
57. <span id="cite_note-57">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-57) Lewis, P. et al. (2020). arXiv:2005.11401.</span>
58. <span id="cite_note-58">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-58) Gao, L. et al. (2023). *Precise Zero‑Shot Dense Retrieval without Relevance Labels (HyDE)*. ACL. arXiv:2212.10496.</span>
59. <span id="cite_note-59">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-59) Nogueira, R. et al. (2019). *Document Expansion by Query Prediction*. arXiv:1904.08375; *docTTTTTquery*. <a href="https://cs.uwaterloo.ca/~jimmylin/publications/Nogueira_Lin_2019_docTTTTTquery-v2.pdf" class="external text" rel="nofollow">PDF</a>.</span>
60. <span id="cite_note-60">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-60) Santhanam, K. et al. (2022). arXiv:2205.09707.</span>
61. <span id="cite_note-61">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-61) Scheerer, J.L. et al. (2025). arXiv:2501.17788.</span>
62. <span id="cite_note-62">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-62) Pyserini *BEIR Regressions* (accessed 2025‑09‑10): results for *trec-covid* for BM25/SPLADE/Contriever/BGE/Cohere. <a href="https://castorini.github.io/pyserini/2cr/beir.html" class="external text" rel="nofollow">castorini.github.io/pyserini/2cr/beir.html</a>.</span>
63. <span id="cite_note-63">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-63) Robertson, S., Zaragoza, H. (2009). DOI:10.1561/1500000019.</span>
64. <span id="cite_note-64">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-64) Pyserini BEIR. See link above.</span>
65. <span id="cite_note-65">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-65) Formal, T. et al. (2021, 2022). arXiv:2107.05720; 2205.04733.</span>
66. <span id="cite_note-66">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-66) Pyserini BEIR.</span>
67. <span id="cite_note-67">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-67) Izacard, G. et al. (2022). arXiv:2112.09118.</span>
68. <span id="cite_note-68">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-68) Pyserini BEIR.</span>
69. <span id="cite_note-69">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-69) Pyserini BEIR.</span>
70. <span id="cite_note-70">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-70) Pyserini BEIR.</span>
71. <span id="cite_note-71">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-71) Cormack et al. (2009). SIGIR. RRF.</span>
72. <span id="cite_note-72">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-72) Bruch et al. (2023). TOIS.</span>
73. <span id="cite_note-73">[↑](https://systems-analysis.info/eng/Hybrid_retrieval#cite_ref-73) Elastic/OpenSearch RRF Docs.</span>
