public interface ClusteringEvaluation extends Evaluation<ClusterID>
Evaluation
for clustering tasks.Modifier and Type | Method and Description |
---|---|
double |
adjustedMI()
Measures the adjusted normalized mutual information between the predicted ids and the supplied ids.
|
double |
normalizedMI()
Calculates the normalized MI between the ground truth clustering ids and the predicted ones.
|
asMap, get, getPredictions
double normalizedMI()
The value is bounded between 0 and 1.
If this value is 1, then the predicted id values are a permutation of the supplied ids. If the value is 0 then the predicted ids are random wrt the supplied ids.
double adjustedMI()
The value is bounded between 0 and 1.
If this value is 1, then the predicted id values are a permutation of the supplied ids. If the value is 0 then the predicted ids are random wrt the supplied ids.
It's adjusted for chance unlike the normalized one.
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.