See: Description
Interface | Description |
---|---|
ClassifierEvaluation<T extends Classifiable<T>> |
Defines methods that calculate classification performance, used for both multi-class and multi-label classification.
|
ConfusionMatrix<T extends Classifiable<T>> |
A confusion matrix for
Classifiable s. |
LabelEvaluation |
Adds multi-class classification specific metrics to
ClassifierEvaluation . |
Class | Description |
---|---|
ConfusionMetrics |
Static functions for computing classification metrics based on a
ConfusionMatrix . |
LabelConfusionMatrix |
A confusion matrix for
Label s. |
LabelEvaluationUtil |
Static utility functions for calculating performance metrics on
Label s. |
LabelEvaluationUtil.PRCurve |
Stores the Precision-Recall curve as three arrays: the precisions, the recalls,
and the thresholds associated with those values.
|
LabelEvaluationUtil.ROC |
Stores the ROC curve as three arrays: the false positive rate, the true positive rate,
and the thresholds associated with those rates.
|
LabelEvaluator | |
LabelMetric | |
LabelMetric.Context |
The context for a
LabelMetric is a ConfusionMatrix . |
Enum | Description |
---|---|
LabelMetrics |
An enum of the default
LabelMetric s supported by the multi-class classification
evaluation package. |
The default metrics calculated are found in LabelMetrics
,
and are based on statistics calculated from a ConfusionMatrix
.
User specified metrics are not currently supported.
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.