Skip to content

Commit 9e5fe19

Browse files
authored
[DOCS] Fix sublist syntax (#105625)
1 parent 9a0eee6 commit 9e5fe19

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/reference/search/search-your-data/knn-search.asciidoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -568,12 +568,12 @@ NOTE: `similarity` is the true <<dense-vector-similarity, similarity>> before it
568568

569569
For each configured <<dense-vector-similarity, similarity>>, here is the corresponding inverted `_score` function. This is so if you are wanting to filter from a `_score` perspective, you can do this minor transformation to correctly reject irrelevant results.
570570
--
571-
- `l2_norm`: `sqrt((1 / _score) - 1)`
572-
- `cosine`: `(2 * _score) - 1`
573-
- `dot_product`: `(2 * _score) - 1`
574-
- `max_inner_product`:
575-
- `_score < 1`: `1 - (1 / _score)`
576-
- `_score >= 1`: `_score - 1`
571+
* `l2_norm`: `sqrt((1 / _score) - 1)`
572+
* `cosine`: `(2 * _score) - 1`
573+
* `dot_product`: `(2 * _score) - 1`
574+
* `max_inner_product`:
575+
** `_score < 1`: `1 - (1 / _score)`
576+
** `_score >= 1`: `_score - 1`
577577
--
578578

579579
Here is an example. In this example we search for the given `query_vector` for `k` nearest neighbors. However, with

0 commit comments

Comments
 (0)