Build a specification of the inverted-file-scalar-quantization KNN query algorithm, with all required parameters specified explicitly.
cuml_knn_algo_ivfsq(
nlist,
nprobe,
qtype = c("QT_8bit", "QT_4bit", "QT_8bit_uniform", "QT_4bit_uniform", "QT_fp16",
"QT_8bit_direct", "QT_6bit"),
encode_residual = FALSE
)
Number of cells to partition dataset into.
At query time, the number of cells used for approximate nearest neighbor search.
Quantizer type. Must be one of "QT_8bit", "QT_4bit", "QT_8bit_uniform", "QT_4bit_uniform", "QT_fp16", "QT_8bit_direct", "QT_6bit".
Whether to encode residuals.
An object encapsulating all required parameters of the "ivfsq" KNN query algorithm.