Skip to content

Commit 3381ea3

Browse files
committed
Replace rerank with rescore to be consistent
1 parent f9a9c82 commit 3381ea3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/reference/mapping/types/dense-vector.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The three following quantization strategies are supported:
122122
* `bbq` - experimental:[] Better binary quantization which reduces each dimension to a single bit precision. This reduces the memory footprint by 96% (or 32x) at a larger cost of accuracy. Generally, oversampling during query time and reranking can help mitigate the accuracy loss.
123123

124124

125-
When using a quantized format, you may want to oversample and rescore the results to improve accuracy. See <<dense-vector-knn-search-reranking, oversampling and rescoring>> for more information.
125+
When using a quantized format, you may want to oversample and rescore the results to improve accuracy. See <<dense-vector-knn-search-rescoring, oversampling and rescoring>> for more information.
126126

127127
To use a quantized index, you can set your index type to `int8_hnsw`, `int4_hnsw`, or `bbq_hnsw`. When indexing `float` vectors, the current default
128128
index type is `int8_hnsw`.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1152,7 +1152,7 @@ POST product-index/_search
11521152
//TEST[continued]
11531153

11541154
[discrete]
1155-
[[dense-vector-knn-search-reranking]]
1155+
[[dense-vector-knn-search-rescoring]]
11561156
==== Oversampling and rescoring for quantized vectors
11571157

11581158
All forms of quantization will result in some accuracy loss and as the quantization level increases the accuracy loss will also increase.
@@ -1163,7 +1163,7 @@ Generally, we have found that:
11631163

11641164
There are two main ways to oversample and rescore. The first is to utilize the <<rescore, rescore section>> in the `_search` request.
11651165

1166-
Here is an example using the top level `knn` search with oversampling and using `rescore` to rerank the results:
1166+
Here is an example using the top level `knn` search with oversampling and using `rescore` to rescore the results:
11671167

11681168
[source,console]
11691169
--------------------------------------------------

0 commit comments

Comments
 (0)