Files
nexus/wiki/concepts/混合搜索.md
weishen e62797a33a Batch 9: Obsidian插件/AI开源平替/Coze培训/TK面单/Ubuntu科学上网
- Sources: 5个新文档
- Concepts: ProxyChains, SOCKS5代理, Docker Daemon代理
- Index: 更新至 Batch 9
- 累计 sources: 108/182
2026-04-16 06:36:36 +08:00

882 B
Raw Blame History

title, type, tags, date
title type tags date
混合搜索 concept
vector-search
information-retrieval
hybrid
2026-04-16

Definition

融合多种检索方法的搜索策略,通常结合:

  1. Dense Vector(语义相似度):理解查询意图
  2. BM25(关键词匹配):捕获精确术语
  3. RRFReciprocal Rank Fusion多结果集融合排序

Why Hybrid Wins

  • 纯向量搜索:同义词命中好,但精确术语漏检
  • 纯 BM25精确术语好但无法捕捉语义泛化
  • 混合两者互补RRF 融合排序

Formula

RRF score for a document d:

RRF(d) = Σ 1/(k + rank_i(d))

其中 k 通常为 60rank_i 是第 i 种检索方法的排名。

Connections