static FeatureBasedClusterer |
FeatureBasedClusterer.newAutomatic() |
Returns a new automatic clusterer using squared Euclidean distance.
|
static FeatureBasedClusterer |
FeatureBasedClusterer.newAutomatic(DistanceMeasure measure) |
Returns a new automatic clusterer using the specified distance measure.
|
static FeatureBasedClusterer |
FeatureBasedClusterer.newGreedy(double threshold) |
Returns a new greedy, single-pass clusterer using squared Euclidean distance and the given threshold.
|
static FeatureBasedClusterer |
FeatureBasedClusterer.newGreedy(DistanceMeasure measure,
double threshold) |
Returns a new greedy, single-pass clusterer using the supplied distance and threshold.
|
static FeatureBasedClusterer |
FeatureBasedClusterer.newKMeans(int k) |
Returns a new k-means–style clusterer using squared Euclidean distance and the given number of
clusters.
|
static FeatureBasedClusterer |
FeatureBasedClusterer.newKMeans(DistanceMeasure measure,
int k) |
Returns a new k-means–style clusterer using the supplied distance measure and number of clusters.
|
static FeatureBasedClusterer |
FeatureBasedClusterer.newSpectral(int k) |
Returns a new spectral clusterer using squared Euclidean distance and the given number of clusters.
|
static FeatureBasedClusterer |
FeatureBasedClusterer.newSpectral(DistanceMeasure measure,
int k) |
Returns a new spectral clusterer using the supplied distance measure and number of clusters.
|