public final class LongProductQuantiserUtilities extends Object
ByteProductQuantiser
using
(Exact) K-Means.Modifier and Type | Method and Description |
---|---|
static LongProductQuantiser |
train(long[][] data,
int numAssigners,
int nIter)
Learn a
LongProductQuantiser by applying exact K-Means to
sub-vectors extracted from the given data. |
static LongProductQuantiser |
train(long[][] data,
int numAssigners,
int K,
int nIter)
Learn a
LongProductQuantiser by applying exact K-Means to
sub-vectors extracted from the given data. |
public static LongProductQuantiser train(long[][] data, int numAssigners, int K, int nIter)
LongProductQuantiser
by applying exact K-Means to
sub-vectors extracted from the given data. The length of the subvectors
is determined by dividing the vector length by the requested number of
assigners. The number of clusters per vector subset is constant, and must
be less than 256.data
- the data to train the LongProductQuantiser
on.numAssigners
- the number of sub-quantisers to learnK
- the number of centroids per sub-quantisernIter
- the maximum number of iterations for each k-means clusteringLongProductQuantiser
.public static LongProductQuantiser train(long[][] data, int numAssigners, int nIter)
LongProductQuantiser
by applying exact K-Means to
sub-vectors extracted from the given data. The length of the subvectors
is determined by dividing the vector length by the requested number of
assigners. The number of clusters per vector subset is constant, and set
at 256.data
- the data to train the LongProductQuantiser
on.numAssigners
- the number of sub-quantisers to learnnIter
- the maximum number of iterations for each k-means clusteringLongProductQuantiser
.