Okapi BM25 explained
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.
The ranking function
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.
Given a query, containing keywords
, the BM25 score of a document is:
score(D,Q)=
IDF(qi) ⋅
| f(qi,D) ⋅ (k1+1) |
f(q | | D)+k1 ⋅ \left(1-b+b ⋅ \right) | | i, | |
|
where
is the number of times that the keyword
occurs in the document,
is the length of the document in words, and is the average document length in the text collection from which documents are drawn.
and are free parameters, usually chosen, in absence of an advanced optimization, as
and
.
[2]
is the IDF (
inverse document frequency) weight of the query term
. It is usually computed as:
IDF(qi)=ln\left(
+1\right)
where is the total number of documents in the collection, and
is the number of documents containing
.
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.
IDF information theoretic interpretation
Here is an interpretation from information theory. Suppose a query term
appears in
documents. Then a randomly picked document
will contain the term with probability
(where
is again the cardinality of the set of documents in the collection). Therefore, the
information content of the message "
contains
" is:
Now suppose we have two query terms
and
. If the two terms occur in documents entirely independently of each other, then the probability of seeing both
and
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.
Modifications
- At the extreme values of the coefficient BM25 turns into ranking functions known as BM11 (for
) and
BM15 (for
).
[3] - BM25F[4] [5] (or the BM25 model with Extension to Multiple Weighted Fields[6]) is a modification of BM25 in which the document is considered to be composed from several fields (such as headlines, main text, anchor text) with possibly different degrees of importance, term relevance saturation and length normalization. BM25F defines each type of field as a stream, applying a per-stream weighting to scale each stream against the calculated score.
- BM25+[7] is an extension of BM25. BM25+ was developed to address one deficiency of the standard BM25 in which the component of term frequency normalization by document length is not properly lower-bounded; as a result of this deficiency, long documents which do match the query term can often be scored unfairly by BM25 as having a similar relevancy to shorter documents that do not contain the query term at all. The scoring formula of BM25+ only has one additional free parameter
(a default value is in absence of a training data) as compared with BM25:
score(D,Q)=
IDF(qi) ⋅ \left[
| f(qi,D) ⋅ (k1+1) |
f(q | | D)+k1 ⋅ \left(1-b+b ⋅ \right) | | i, | |
|
+\delta\right]
General references
- Stephen E. Robertson . Steve Walker . Susan Jones . Micheline Hancock-Beaulieu . Mike Gatford . amp . Okapi at TREC-3 . Proceedings of the Third Text REtrieval Conference (TREC 1994). http://trec.nist.gov/pubs/trec3/t3_proceedings.html . Gaithersburg, USA. November 1994.
- Stephen E. Robertson . Steve Walker . Micheline Hancock-Beaulieu . amp . Okapi at TREC-7. Proceedings of the Seventh Text REtrieval Conference. http://trec.nist.gov/pubs/trec7/t7_proceedings.html. Gaithersburg, USA. November 1998.
- 10.1016/S0306-4573(00)00015-7. A probabilistic model of information retrieval: Development and comparative experiments: Part 1. Information Processing & Management. 36. 6. 779–808. 2000. Spärck Jones . K. . Karen Spärck Jones. Walker . S.. Robertson . S. E. . Stephen Robertson (computer scientist). 10.1.1.134.6108.
- 10.1016/S0306-4573(00)00016-9. A probabilistic model of information retrieval: Development and comparative experiments: Part 2. Information Processing & Management. 36. 6. 809–840. 2000. Spärck Jones . K. . Karen Spärck Jones. Walker . S. . Robertson . S. E. . Stephen Robertson (computer scientist).
- Stephen Robertson . Hugo Zaragoza . amp . The Probabilistic Relevance Framework: BM25 and Beyond . Foundations and Trends in Information Retrieval . 2009 . 3 . 4 . 333–389 . 10.1561/1500000019 . 10.1.1.156.5282 . 207178704 .
External links
Notes and References
- Web site: OKAPI . 2023-10-16 . smcse.city.ac.uk.
- Christopher D. Manning, Prabhakar Raghavan, Hinrich Schütze. An Introduction to Information Retrieval, Cambridge University Press, 2009, p. 233.
- Web site: The BM25 Weighting Scheme.
- Hugo Zaragoza, Nick Craswell, Michael Taylor, Suchi Saria, and Stephen Robertson. Microsoft Cambridge at TREC-13: Web and HARD tracks. In Proceedings of TREC-2004.
- Stephen Robertson . Hugo Zaragoza . amp . The Probabilistic Relevance Framework: BM25 and Beyond . Foundations and Trends in Information Retrieval . 2009 . 3 . 4 . 333–389 . 10.1561/1500000019 . 10.1.1.156.5282 . 207178704 .
- Book: Robertson . Stephen . Zaragoza . Hugo . Taylor . Michael . Proceedings of the thirteenth ACM international conference on Information and knowledge management . Simple BM25 extension to multiple weighted fields . 2004-11-13 . https://doi.org/10.1145/1031171.1031181 . CIKM '04 . New York, NY, USA . Association for Computing Machinery . 42–49 . 10.1145/1031171.1031181 . 978-1-58113-874-0. 16628332 .
- Yuanhua Lv and ChengXiang Zhai. Lower-bounding term frequency normalization. In Proceedings of CIKM'2011, pages 7-16.