public final class ShortProductQuantiserUtilities extends Object
ByteProductQuantiser
using
(Exact) K-Means.Modifier and Type | Method and Description |
---|---|
static ShortProductQuantiser |
train(short[][] data,
int numAssigners,
int nIter)
Learn a
ShortProductQuantiser by applying exact K-Means to
sub-vectors extracted from the given data. |
static ShortProductQuantiser |
train(short[][] data,
int numAssigners,
int K,
int nIter)
Learn a
ShortProductQuantiser by applying exact K-Means to
sub-vectors extracted from the given data. |
public static ShortProductQuantiser train(short[][] data, int numAssigners, int K, int nIter)
ShortProductQuantiser
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 ShortProductQuantiser
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 clusteringShortProductQuantiser
.public static ShortProductQuantiser train(short[][] data, int numAssigners, int nIter)
ShortProductQuantiser
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 ShortProductQuantiser
on.numAssigners
- the number of sub-quantisers to learnnIter
- the maximum number of iterations for each k-means clusteringShortProductQuantiser
.