Skip to content

Commit 2ad7b31

Browse files
authored
BM25 is now the default scoring mechanism (#1581)
1 parent 5c16c34 commit 2ad7b31

File tree

1 file changed

+2
-2
lines changed
  • content/develop/interact/search-and-query/advanced-concepts

1 file changed

+2
-2
lines changed

content/develop/interact/search-and-query/advanced-concepts/scoring.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If you prefer a custom scoring function, it is possible to add more functions us
2323

2424
The following is a list of the pre-bundled scoring functions available in Redis and a short explanation about how they work. Each function is mentioned by registered name, which can be passed as a `SCORER` argument in [`FT.SEARCH`]({{< relref "/commands/ft.search/" >}}).
2525

26-
## TFIDF (default)
26+
## TFIDF
2727

2828
Basic [TF-IDF scoring](https://en.wikipedia.org/wiki/Tf%E2%80%93idf) with a few extra features:
2929

@@ -76,7 +76,7 @@ Term frequencies are normalized by the length of the document, expressed as the
7676
FT.SEARCH myIndex "foo" SCORER TFIDF.DOCNORM
7777
```
7878

79-
## BM25
79+
## BM25 (default)
8080

8181
A variation on the basic `TFIDF` scorer, see [this Wikipedia article for more info](https://en.wikipedia.org/wiki/Okapi_BM25).
8282

0 commit comments

Comments
 (0)