RRepoGEO

REPOGEO 报告 · LITE

xhluca/bm25s

默认分支 main · commit c37c81c7 · 扫描时间 2026/5/22 11:07:13

星标 1,675 · Fork 99

本仓库扫描历史

下方为分数趋势(含全部就绪扫描;左旧右新,可横向滚动)。表格明细默认折叠,展开后每页 10 条,最新在上。

分数趋势(左 → 右:旧 → 新)

共 2 条就绪扫描。点击下方按钮展开表格(每页 10 条,可翻页)。

AI 可见性总分
33 /100
亟需修复
品类召回
0 / 2
在所有问题中均未被推荐
规则结果
通过 2 · 警告 0 · 失败 0
客观元数据检查
AI 认识你的名字
2 / 3
直接询问时,AI 是否点名你的仓库
如何阅读这份报告

行动计划告诉你下一步要做什么——按影响力排序、可直接复制粘贴的修改。品类可见性是真正的 GEO 测试:当用户向 AI 提一个不带品牌、本应让 xhluca/bm25s 浮出水面的问题时,AI 是真的推荐了你,还是推荐了你的竞品?客观检查验证 AI 引擎最先权衡的那些元数据信号。自指检查判断 AI 是否还认识你的名字。

行动计划 — 可复制粘贴的修复

3 条由 gemini-2.5-flash 生成、按优先级排序的修改。修完后请把对应条目标记为完成。

整体方向
  • highreadme#1
    Reposition the README's introductory statement to clarify scope

    原因:

    当前
    BM25S (or BM25-Sparse) is an ultrafast implementation of BM25 in pure Python, powered by Numpy
    Welcome to `bm25s`, a library that implements BM25 in Python, allowing you to rank documents based on a query. BM25 is a widely used ranking function used for text retrieval tasks, and is a core component of search services like Elasticsearch.
    复制粘贴的修复
    Welcome to `bm25s`, an ultrafast and memory-efficient pure Python library for **lexical BM25 search and document ranking**, powered by Numpy and Numba. Unlike full-fledged search engines like Elasticsearch or vector search libraries such as Faiss and Annoy, `bm25s` focuses specifically on providing a high-performance implementation of the BM25 algorithm, making it ideal for integrating into custom RAG pipelines and specialized search applications.
  • highreadme#2
    Add a dedicated 'Comparison with Alternatives' section to the README

    原因:

    复制粘贴的修复
    ## Comparison with Alternatives
    
    While several libraries offer BM25 implementations or broader search capabilities, `bm25s` stands out for its unique focus on **ultrafast, memory-efficient lexical BM25 scoring** in pure Python.
    
    -   **vs. `Rank BM25`**: `bm25s` is designed for significantly higher performance and lower memory footprint, especially with large document collections, by leveraging sparse matrix operations and Numba acceleration for eager score computation.
    -   **vs. `pyserini`**: `pyserini` offers a comprehensive toolkit built on Lucene, providing broader functionalities. `bm25s` is a lightweight, pure Python library focused solely on optimizing the BM25 algorithm itself.
    -   **vs. Elasticsearch, Faiss, Annoy**: These are full search engines (Elasticsearch) or vector search libraries (Faiss, Annoy) for different paradigms. `bm25s` is a specialized library for integrating high-performance lexical BM25 into your custom applications, not a standalone search system or vector index.
  • mediumtopics#3
    Refine the topics list for more specific targeting

    原因:

    当前
    bm25, bm25-l, bm25-plus, information-retrieval, lexical-search, okapi-bm25, rag, retrieval, robertson, search
    复制粘贴的修复
    bm25, bm25-l, bm25-plus, information-retrieval, lexical-search, okapi-bm25, rag, retrieval, robertson, search, python-library, sparse-matrix, high-performance-search, document-ranking

本次扫描解析到的品类 GEO 通道:google/gemini-2.5-flash, deepseek/deepseek-v4-flash

品类可见性 — 真正的 GEO 测试

向 google/gemini-2.5-flash 提出的不带品牌问题。AI 推荐了你,还是推荐了别人?

各模型使用同一组问题 — 切换标签对比回答与排名。

召回
0 / 2
0% 的问题里出现了 xhluca/bm25s
平均排名
越小越好。#1 表示首位推荐。
声量占比
0%
在所有被点名的工具中,你占了多少?
头号对手
facebookresearch/faiss
在 2 个问题中被推荐 1 次
竞品排行
  1. facebookresearch/faiss · 被推荐 1 次
  2. spotify/annoy · 被推荐 1 次
  3. elastic/elasticsearch · 被推荐 1 次
  4. mchaput/whoosh · 被推荐 1 次
  5. RaRe-Technologies/gensim · 被推荐 1 次
  • 品类问题
    What is the fastest Python library for efficient lexical search and document ranking?
    你:未被推荐
    AI 推荐顺序:
    1. Faiss (facebookresearch/faiss)
    2. Annoy (spotify/annoy)
    3. Elasticsearch (elastic/elasticsearch)
    4. Whoosh (mchaput/whoosh)
    5. Gensim (RaRe-Technologies/gensim)
    6. Haystack (deepset-ai/haystack)
    7. Scikit-learn (scikit-learn/scikit-learn)

    AI 推荐了 7 个替代方案,却始终没点名 xhluca/bm25s。这就是要补上的差距。

    查看 AI 完整回答
  • 品类问题
    How can I implement a high-performance BM25 information retrieval system in Python for RAG?
    你:未被推荐
    AI 推荐顺序:
    1. Rank BM25
    2. pyserini
    3. Elasticsearch
    4. Whoosh
    5. Gensim

    AI 推荐了 5 个替代方案,却始终没点名 xhluca/bm25s。这就是要补上的差距。

    查看 AI 完整回答

客观检查

针对 AI 引擎最看重的元数据信号的规则审计。

  • Metadata completeness
    pass

  • README presence
    pass

自指检查

当被直接问到你时,AI 是否还知道你的仓库存在?

  • Compared to common alternatives in this category, what is the core differentiator of xhluca/bm25s?
    pass
    AI 未点名 xhluca/bm25s —— 很可能在说另一个项目

    AI 的回答可能信誓旦旦却是错的。请按事实核对:技术栈、目标人群、差异化点是不是和你实际的对得上?

  • If a team adopts xhluca/bm25s in production, what risks or prerequisites should they evaluate first?
    pass
    AI 明确点名了 xhluca/bm25s

    AI 的回答可能信誓旦旦却是错的。请按事实核对:技术栈、目标人群、差异化点是不是和你实际的对得上?

  • In one sentence, what problem does the repo xhluca/bm25s solve, and who is the primary audience?
    pass
    AI 明确点名了 xhluca/bm25s

    AI 的回答可能信誓旦旦却是错的。请按事实核对:技术栈、目标人群、差异化点是不是和你实际的对得上?

嵌入你的 GEO 徽章

把这个徽章贴进 xhluca/bm25s 的 README。每次重新扫描都会自动更新,并跳到最新报告——是「我在乎 AI 可发现性」最简单的公开证明。

RepoGEO badge preview实时预览
MARKDOWN(README)
[![RepoGEO](https://repogeo.com/badge/xhluca/bm25s.svg)](https://repogeo.com/zh/r/xhluca/bm25s)
HTML
<a href="https://repogeo.com/zh/r/xhluca/bm25s"><img src="https://repogeo.com/badge/xhluca/bm25s.svg" alt="RepoGEO" /></a>
Pro

订阅 Pro,解锁深度诊断

xhluca/bm25s — 轻量扫描仍免费;本卡列出 Pro 相对轻量的深度额度。

  • 深度报告每月 10 次
  • 无品牌品类查询5,轻量 2
  • 优先行动项8,轻量 3