Auto-sync: 2026-04-27 20:02

This commit is contained in:
2026-04-27 20:02:52 +08:00
parent 5854781fa8
commit de7ebe9256
59 changed files with 2122 additions and 1325 deletions

View File

@@ -0,0 +1,27 @@
---
title: "RRF-Reranking"
type: concept
tags: []
---
## Definition
RRFReciprocal Rank Fusion倒数排名融合是一种融合多个排序结果的技术通过综合不同搜索方法的排名生成统一排序。
## Formula
```
RRF_score(d) = Σ 1/(k + rank_i(d))
```
其中 k 是平滑因子通常为60rank_i(d) 是文档 d 在第 i 个排名列表中的位置。
## Key Characteristics
- 无需人工调参,对不同搜索方法一视同仁
- 排名靠前的文档在融合时权重更高
- 计算简单,可实时融合多个搜索结果
## Application
- [[memsearch]] 使用 RRF 融合稠密向量搜索和 BM25 搜索的结果
- [[HybridSearch]] 的核心重排机制
## Related Concepts
- [[HybridSearch]] — 混合搜索RRF 是其组成部分)
- [[Semantic-Search]] — 语义搜索