In information retrieval, Okapi BM25 (BM is an abbreviation of best matching) is a ranking function used by search engines to estimate the relevance of documents to a given search query.
It is based on the probabilistic retrieval framework developed in the 1970s and 1980s by Stephen E. Robertson, Karen Spärck Jones, and others.
The name of the actual ranking function is BM25.
The fuller name, Okapi BM25, includes the name of the first system to use it, which was the Okapi information retrieval system, implemented at London's City University[1] in the 1980s and 1990s.
BM25 and its newer variants, e.g. BM25F (a version of BM25 that can take document structure and anchor text into account), represent TF-IDF-like retrieval functions used in document retrieval.
[2] BM25 is a bag-of-words retrieval function that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document.
It is a family of scoring functions with slightly different components and parameters.
One of the most prominent instantiations of the function is as follows.
is the number of times that the keyword
is the length of the document D in words, and avgdl is the average document length in the text collection from which documents are drawn.
and b are free parameters, usually chosen, in absence of an advanced optimization, as
is the IDF (inverse document frequency) weight of the query term
It is usually computed as: where N is the total number of documents in the collection, and
There are several interpretations for IDF and slight variations on its formula.
In the original BM25 derivation, the IDF component is derived from the Binary Independence Model.
Here is an interpretation from information theory.
Then a randomly picked document
is again the cardinality of the set of documents in the collection).
Therefore, the information content of the message "
If the two terms occur in documents entirely independently of each other, then the probability of seeing both
in a randomly picked document
is: and the information content of such an event is: With a small variation, this is exactly what is expressed by the IDF component of BM25.