RUNLOCALAIv38
->Will it run?Best GPUCompareTroubleshootStartLearnPulseModelsHardwareToolsBench
Run check
RUNLOCALAI

Independently operated catalog for local-AI hardware and software. Hand-written verdicts. Source-cited claims. Reproducible commands when we have them.

OP·Eruo Fredoline
DIR
  • Models
  • Hardware
  • Tools
  • Benchmarks
TOOLS
  • Will it run?
  • Compare hardware
  • Cost vs cloud
  • Choose my GPU
  • Prompting kits
  • Quick answers
REF
  • All buyer guides
  • Learn local AI
  • Methodology
  • Glossary
  • Errors KB
  • Trust
EDITOR
  • About
  • Author
  • How we make money
  • Editorial policy
  • Contact
LEGAL
  • Privacy
  • Terms
  • Sitemap
MAIL · MONTHLY DIGEST
Get monthly local AI changes
Monthly recap. No spam.
DISCLOSURE

Some links on this site are affiliate links (Amazon Associates and other first-class retailers). When you buy through them, we earn a small commission at no extra cost to you. Affiliate links do not influence our verdicts — there are cards we rate highly that we don't have affiliate relationships with, and cards that sell well that we refuse to recommend. Read more →

© 2026 runlocalai.coIndependently operated
RUNLOCALAI · v38
Glossary / Large language models / Hybrid Retrieval
Large language models

Hybrid Retrieval

Hybrid retrieval combines dense and sparse retrieval, typically by union-then-rerank or reciprocal rank fusion (RRF). The motivation: dense captures semantic similarity, sparse catches exact-token matches; together they cover failure modes neither has alone.

In practice, hybrid often wins by 5–15% NDCG@10 over the best of the two on diverse corpora. The cost is operational — you maintain two indexes and need a fusion strategy.

Most production RAG systems (LlamaIndex, LangChain, Weaviate) ship hybrid as a default option.

Practical example

A team running a local support-ticket search tool notices two distinct failure patterns: BM25 alone misses paraphrased questions ("my card got declined" vs. a ticket titled "payment authorization failure"), while dense-only search misses exact order IDs and SKU codes. Switching to hybrid retrieval — running both BM25 and a BGE dense index in parallel, then merging with reciprocal rank fusion — fixes both classes of miss without picking a winner in advance. The operational cost is real: two indexes to keep in sync on ingestion, and an extra fusion step before results reach the reranker. For a corpus under a few hundred thousand documents this runs comfortably on CPU alongside a local LLM, since neither BM25 nor HNSW search is GPU-bound.

Related terms

Sparse RetrievalReranker (Cross-Encoder)Dense RetrievalBM25 (Best Matching 25)

See also

tool: weaviatetool: qdranttool: chroma

Reviewed by Eruo Fredoline. See our editorial policy.

Buyer guides
  • Best GPU for local AI →
  • Best laptop for local AI →
  • Best Mac for local AI →
When it doesn't work
  • CUDA out of memory →
  • Ollama running slowly →
  • ROCm not detected →