java.lang.Object
org.elasticsearch.client.ml.dataframe.evaluation.classification.RecallMetric
All Implemented Interfaces:
EvaluationMetric, ToXContent, ToXContentObject

public class RecallMetric
extends java.lang.Object
implements EvaluationMetric
RecallMetric is a metric that answers the question: "What fraction of documents belonging to X have been predicted as X by the classifier?" for any given class X equation: recall(X) = TP(X) / (TP(X) + FN(X)) where: TP(X) - number of true positives wrt X FN(X) - number of false negatives wrt X