Creates a code evaluator that computes the F-beta score: the weighted
harmonic mean of precision and recall, where beta controls how much more
weight recall gets relative to precision (beta = 1 is the standard F1
score).
Supports binary classification (via positiveLabel, or auto-detected when
average is at its default "macro" and labels are the numeric set
{0, 1}) and multi-class classification (via the average strategy).
Creates a code evaluator that computes the F-beta score: the weighted harmonic mean of precision and recall, where
betacontrols how much more weight recall gets relative to precision (beta = 1is the standard F1 score).Supports binary classification (via
positiveLabel, or auto-detected whenaverageis at its default"macro"and labels are the numeric set{0, 1}) and multi-class classification (via theaveragestrategy).