train

API definition

void train(idx_t n, const float *x) override

Function

Trains the quantizer for AscendLinearTransform. It inherits the virtual function APIs defined in faiss::VectorTransform and provides specific implementation.

Input

Index::idx_t n: number of feature vectors in the training dataset.

const float *x: feature vector data.

Output

N/A

Return value

N/A

Restrictions

  • The value of n cannot be greater than 1e9.
  • The x must be a non-null pointer with a length of dim x n. Otherwise, an out-of-bounds read/write error may occur, causing program breakdown.