Does ElasticSearch's More Like This query use BM25?

Viewed 15

In reading an explanation of ES's More Like This query type, I remain confused. It sounds like it does this, but I'm seeking confirmation:

  1. Given a document, use TFIDF to extract the most relevant terms
  2. Given those relevant terms, use the standard term query, ORing all the relevant terms together.

Is this correct? And it correct to assume that step #2 uses BM25 for ranking?

0 Answers
Related