Fscores
Fscores, commonly written as F-scores, are a family of metrics used to evaluate the balance between precision and recall in binary classification and information retrieval tasks. Precision measures the proportion of retrieved items that are relevant, while recall measures the proportion of relevant items that are retrieved. The F-score combines these two aspects into a single value.
The general form is the F-beta score: F_beta = (1 + beta^2) * (precision * recall) / (beta^2 * precision + recall), where
Fscores are widely used to evaluate classifiers, detectors, and search systems, especially when class distributions are
Limitations include sensitivity to class prevalence and the potential to obscure performance on negatives or on
See also: Precision, Recall, F1-score, F2-score, F-beta score.