BinaryQuantizationCompression Class
- java.
lang. Object - com.
azure. search. documents. indexes. models. VectorSearchCompression - com.
azure. search. documents. indexes. models. BinaryQuantizationCompression
- com.
- com.
public final class BinaryQuantizationCompression
extends VectorSearchCompression
Contains configuration options specific to the binary quantization compression method used during indexing and querying.
Constructor Summary
| Constructor | Description |
|---|---|
| BinaryQuantizationCompression(String compressionName) |
Creates an instance of Binary |
Method Summary
| Modifier and Type | Method and Description |
|---|---|
|
static
Binary |
fromJson(JsonReader jsonReader)
Reads an instance of Binary |
|
Vector |
getKind()
Get the kind property: Type of Vector |
|
Binary |
setRescoringOptions(RescoringOptions rescoringOptions)
Set the rescoring |
|
Binary |
setTruncationDimension(Integer truncationDimension)
Set the truncation |
|
Json |
toJson(JsonWriter jsonWriter) |
Methods inherited from VectorSearchCompression
Methods inherited from java.lang.Object
Constructor Details
BinaryQuantizationCompression
public BinaryQuantizationCompression(String compressionName)
Creates an instance of BinaryQuantizationCompression class.
Parameters:
Method Details
fromJson
public static BinaryQuantizationCompression fromJson(JsonReader jsonReader)
Reads an instance of BinaryQuantizationCompression from the JsonReader.
Parameters:
Returns:
Throws:
getKind
public VectorSearchCompressionKind getKind()
Get the kind property: Type of VectorSearchCompression.
Overrides:
BinaryQuantizationCompression.getKind()Returns:
setRescoringOptions
public BinaryQuantizationCompression setRescoringOptions(RescoringOptions rescoringOptions)
Set the rescoringOptions property: Contains the options for rescoring.
Overrides:
BinaryQuantizationCompression.setRescoringOptions(RescoringOptions rescoringOptions)Parameters:
setTruncationDimension
public BinaryQuantizationCompression setTruncationDimension(Integer truncationDimension)
Set the truncationDimension property: The number of dimensions to truncate the vectors to. Truncating the vectors reduces the size of the vectors and the amount of data that needs to be transferred during search. This can save storage cost and improve search performance at the expense of recall. It should be only used for embeddings trained with Matryoshka Representation Learning (MRL) such as OpenAI text-embedding-3-large (small). The default value is null, which means no truncation.
Overrides:
BinaryQuantizationCompression.setTruncationDimension(Integer truncationDimension)Parameters:
toJson
public JsonWriter toJson(JsonWriter jsonWriter)
Overrides:
BinaryQuantizationCompression.toJson(JsonWriter jsonWriter)Parameters:
Throws: