public class ShortKMeans extends Object implements SpatialClusterer<ShortCentroidsResult,short[]>
ShortNearestNeighbours
; for
example, approximate K-Means can be achieved using a
ShortNearestNeighboursKDTree
whilst exact K-Means can be achieved
using an ShortNearestNeighboursExact
. The specific choice of
nearest-neighbour object is controlled through the
NearestNeighboursFactory
provided to the KMeansConfiguration
used to construct instances of this class. The choice of
ShortNearestNeighbours
affects the speed of clustering; using
approximate nearest-neighbours algorithms for the K-Means can produces
comparable results to the exact KMeans algorithm in much shorter time.
The choice and configuration of ShortNearestNeighbours
can also
control the type of distance function being used in the clustering.
The algorithm is implemented as follows: Clustering is initiated using a
ShortKMeansInit
and is iterative. In each round, batches of
samples are assigned to centroids in parallel. The centroid assignment is
performed using the pre-configured ShortNearestNeighbours
instances
created from the KMeansConfiguration
. Once all samples are assigned
new centroids are calculated and the next round started. Data point pushing
is performed using the same techniques as center point assignment.
This implementation is able to deal with larger-than-memory datasets by
streaming the samples from disk using an appropriate DataSource
. The
only requirement is that there is enough memory to hold all the centroids
plus working memory for the batches of samples being assigned.
Modifier and Type | Class and Description |
---|---|
static class |
ShortKMeans.Result
Result object for ShortKMeans, extending ShortCentroidsResult and ShortNearestNeighboursProvider,
as well as giving access to state information from the operation of the K-Means algorithm
(i.e.
|
Modifier | Constructor and Description |
---|---|
protected |
ShortKMeans()
A completely default
ShortKMeans used primarily as a convenience function for reading. |
|
ShortKMeans(KMeansConfiguration<ShortNearestNeighbours,short[]> conf)
Construct the clusterer with the the given configuration.
|
Modifier and Type | Method and Description |
---|---|
ShortKMeans.Result |
cluster(DataSource<short[]> ds)
Perform clustering with data from a data source.
|
protected ShortKMeans.Result |
cluster(DataSource<short[]> data,
int K)
Initiate clustering with the given data and number of clusters.
|
void |
cluster(DataSource<short[]> data,
ShortKMeans.Result result)
Main clustering algorithm.
|
ShortKMeans.Result |
cluster(short[][] data)
Perform clustering on the given data.
|
void |
cluster(short[][] data,
ShortKMeans.Result result)
Main clustering algorithm.
|
static ShortKMeans |
createExact(int K)
Convenience method to quickly create an exact
ShortKMeans . |
static ShortKMeans |
createExact(int K,
int niters)
Convenience method to quickly create an exact
ShortKMeans . |
static ShortKMeans |
createKDTreeEnsemble(int K)
Convenience method to quickly create an approximate
ShortKMeans
using an ensemble of KD-Trees to perform nearest-neighbour lookup. |
KMeansConfiguration<ShortNearestNeighbours,short[]> |
getConfiguration()
Get the configuration
|
ShortKMeansInit |
getInit()
Get the current initialisation algorithm
|
int[][] |
performClustering(short[][] data) |
protected double |
roundDouble(double value) |
protected float |
roundFloat(double value) |
protected int |
roundInt(double value) |
protected long |
roundLong(double value) |
void |
seed(long seed)
Set the seed for the internal random number generator.
|
void |
setConfiguration(KMeansConfiguration<ShortNearestNeighbours,short[]> conf)
Set the configuration
|
void |
setInit(ShortKMeansInit init)
Set the current initialisation algorithm
|
String |
toString() |
public ShortKMeans(KMeansConfiguration<ShortNearestNeighbours,short[]> conf)
conf
- The configuration.protected ShortKMeans()
ShortKMeans
used primarily as a convenience function for reading.public ShortKMeansInit getInit()
public void setInit(ShortKMeansInit init)
init
- the init algorithm to be usedpublic void seed(long seed)
seed
- the random seed for init random sample selection, no seed if seed < -1public ShortKMeans.Result cluster(short[][] data)
SpatialClusterer
cluster
in interface SpatialClusterer<ShortCentroidsResult,short[]>
data
- the data.public int[][] performClustering(short[][] data)
performClustering
in interface Clusterer<short[][]>
protected ShortKMeans.Result cluster(DataSource<short[]> data, int K) throws Exception
#cluster(DataSource, short [][])
.data
- data source to cluster withK
- number of clusters to findException
public void cluster(short[][] data, ShortKMeans.Result result) throws InterruptedException
result
object and as such ignores the
init object. In normal operation you should call one of the other cluster
cluster methods instead of this one. However, if you wish to resume clustering
iterations from a result that you've already generated this is the method
to use.data
- the data to be clusteredresult
- the results object to be populatedInterruptedException
- if interrupted while waiting, in
which case unfinished tasks are cancelled.public void cluster(DataSource<short[]> data, ShortKMeans.Result result) throws InterruptedException
result
object and as such ignores the
init object. In normal operation you should call one of the other cluster
cluster methods instead of this one. However, if you wish to resume clustering
iterations from a result that you've already generated this is the method
to use.data
- the data to be clusteredresult
- the results object to be populatedInterruptedException
- if interrupted while waiting, in
which case unfinished tasks are cancelled.protected float roundFloat(double value)
protected double roundDouble(double value)
protected long roundLong(double value)
protected int roundInt(double value)
public ShortKMeans.Result cluster(DataSource<short[]> ds)
SpatialClusterer
DataSource
could potentially be backed by disk rather in memory.cluster
in interface SpatialClusterer<ShortCentroidsResult,short[]>
ds
- the data.public KMeansConfiguration<ShortNearestNeighbours,short[]> getConfiguration()
public void setConfiguration(KMeansConfiguration<ShortNearestNeighbours,short[]> conf)
conf
- the configuration to setpublic static ShortKMeans createExact(int K)
ShortKMeans
. All
parameters other than the number of clusters are set
at their defaults, but can be manipulated through the configuration
returned by getConfiguration()
.
Euclidean distance is used to measure the distance between points.
K
- the number of clustersShortKMeans
instance configured for exact k-meanspublic static ShortKMeans createExact(int K, int niters)
ShortKMeans
. All
parameters other than the number of clusters and number
of iterations are set at their defaults, but can be manipulated through
the configuration returned by getConfiguration()
.
Euclidean distance is used to measure the distance between points.
K
- the number of clustersniters
- maximum number of iterationsShortKMeans
instance configured for exact k-meanspublic static ShortKMeans createKDTreeEnsemble(int K)
ShortKMeans
using an ensemble of KD-Trees to perform nearest-neighbour lookup. All
parameters other than the number of clusters are set
at their defaults, but can be manipulated through the configuration
returned by getConfiguration()
.
Euclidean distance is used to measure the distance between points.
K
- the number of clustersShortKMeans
instance configured for approximate k-means
using an ensemble of KD-Trees