Uses of Class
deepnetts.eval.ConfusionMatrix
Packages that use ConfusionMatrix
Package
Description
Evaluation procedures for machine learning models, used to estimate how good models are performing when given new data that (that was not used for training).
-
Uses of ConfusionMatrix in deepnetts.eval
Methods in deepnetts.eval that return ConfusionMatrixModifier and TypeMethodDescriptionClassificationMetrics.getConfusionMatrix()
Returns a confusion matrix that is used to generate these metrics.ClassifierEvaluator.getConfusionMatrix()
Methods in deepnetts.eval with parameters of type ConfusionMatrixModifier and TypeMethodDescriptionstatic ClassificationMetrics[]
ClassificationMetrics.createFrom
(ConfusionMatrix confusionMatrix) Creates classification metrics from the given confusion matrix.Constructors in deepnetts.eval with parameters of type ConfusionMatrixModifierConstructorDescriptionClassificationMetrics
(ConfusionMatrix confMatrix) Constructs a new classification metrics from specified confusion matrix.ClassificationMetrics
(ConfusionMatrix confMatrix, String classLabel, int classIdx) Constructs a new classification metrics of a single class for multi class classification.