Skip to main content

Module bm25

Module bm25 

Source
Expand description

Compact BM25 keyword index over a node text property (ADR-252 P4).

Provides the keyword arm of the tri-modal hybrid query (BM25 + ANN vector + graph traversal). Self-contained — an in-memory inverted index with Okapi BM25 scoring, no external search engine. Built from (NodeId, &str) pairs and queried for the top-k by keyword relevance.

Structs§

Bm25Index
In-memory BM25 inverted index over a single text field.
Bm25Params
Okapi BM25 parameters. Defaults k1=1.2, b=0.75 are the standard choices.