MCPcopy Create free account
hub / github.com/cosdata/cosdata / compute_bm25_idf

Function compute_bm25_idf

tests/test_hybrid.py:244–245  ·  view source on GitHub ↗
(total_docs: int, docs_with_term: int)

Source from the content-addressed store, hash-verified

242
243
244def compute_bm25_idf(total_docs: int, docs_with_term: int) -> float:
245 return math.log1p((total_docs - docs_with_term + 0.5) / (docs_with_term + 0.5))
246
247
248def compute_bm25_tf(

Callers 2

build_vectorFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected