Uses of Class
org.hipparchus.clustering.evaluation.ClusterEvaluator
-
Packages that use ClusterEvaluator Package Description org.hipparchus.clustering Clustering algorithms.org.hipparchus.clustering.evaluation Cluster evaluation methods. -
-
Uses of ClusterEvaluator in org.hipparchus.clustering
Methods in org.hipparchus.clustering that return ClusterEvaluator Modifier and Type Method Description ClusterEvaluator<T>
MultiKMeansPlusPlusClusterer. getClusterEvaluator()
Returns theClusterEvaluator
used to determine the "best" clustering.Constructors in org.hipparchus.clustering with parameters of type ClusterEvaluator Constructor Description MultiKMeansPlusPlusClusterer(KMeansPlusPlusClusterer<T> clusterer, int numTrials, ClusterEvaluator<T> evaluator)
Build a clusterer. -
Uses of ClusterEvaluator in org.hipparchus.clustering.evaluation
Subclasses of ClusterEvaluator in org.hipparchus.clustering.evaluation Modifier and Type Class Description class
SumOfClusterVariances<T extends Clusterable>
Computes the sum of intra-cluster distance variances according to the formula: \] score = \sum\limits_{i=1}^n \sigma_i^2 \] where n is the number of clusters and \( \sigma_i^2 \) is the variance of intra-cluster distances of cluster \( c_i \).
-