Skip to content

Commit 7f93328

Browse files
committed
picked up a few more edits from Robert that missed the PR due to overwritten text, but showed up in email
1 parent 6fa4f6a commit 7f93328

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/search/vector-search-how-to-quantization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Two types of quantization are supported:
4747
4848
## Recommended rescoring techniques
4949

50-
Rescoring is technique used to offset information loss due to vector compression. It uses oversampling to pick up extra vectors, and supplemental information to rescore initial results found by the query. Supplemental information is either uncompressed original full-precision vectors, or for binary quantization only, you have an alternative option of using the dot product of the embeddings.
50+
Rescoring is technique used to offset information loss due to vector compression. It uses oversampling to pick up extra vectors, and supplemental information to rescore initial results found by the query. Supplemental information is either uncompressed original full-precision vectors, or for binary quantization only, you have an alternative option of rescoring using the binary quantized document candidates against the query vector.
5151

5252
Rescoring applies to:
5353

@@ -60,7 +60,7 @@ Rescoring occurs when you set a rescoring option in the index vector configurati
6060

6161
- In version 2024-07-01, set `rerankWithOriginalVectors`
6262
- In version 2024-11-01-preview, set `rescoringOptions.enableRescoring` and `rescoreStorageMethod.preserveOriginals`
63-
- In version 2025-03-01-preview, set `rescoringOptions.enableRescoring` and `rescoreStorageMethod.preserveOriginals` for scalar quantization or `rescoreStorageMethod.discardOriginals` for binary quantization
63+
- In version 2025-03-01-preview, set `rescoringOptions.enableRescoring` and `rescoringOptions.rescoreStorageMethod=preserveOriginals` for scalar quantization, or `rescoringOptions.enableRescoring` for binary quantization.
6464

6565
The generalized process for rescoring is:
6666

0 commit comments

Comments
 (0)