Package version:

Interface BinaryQuantizationCompression

Contains configuration options specific to the binary quantization compression method used during indexing and querying.

interface BinaryQuantizationCompression {
    compressionName: string;
    kind: "binaryQuantization";
    rescoringOptions?: RescoringOptions;
    truncationDimension?: number;
}

Hierarchy (view full)

Properties

compressionName: string

The name to associate with this particular configuration.

kind

Polymorphic discriminator, which specifies the different types this object can be

rescoringOptions?: RescoringOptions

Contains the options for rescoring.

truncationDimension?: number

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.