A ranking function used by search engines to estimate the relevance of documents to a given search query.
How It Works
BM25 is a probabilistic retrieval model that ranks documents based on the frequency of query terms in each document, adjusted by document length and term saturation.
Technical Details
BM25 is part of the family of scoring functions based on the probabilistic retrieval framework. It uses parameters like k1 and b to adjust term frequency saturation and document length normalization.
Best Practices
Tune parameters k1 and b for your specific dataset
Combine with other ranking models for improved performance