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