FMeasure
F-measure, also known as the F-score, is a metric that combines precision and recall into a single value to evaluate the accuracy of a classifier. The general form is Fβ = (1 + β^2) · (P · R) / (β^2 · P + R), where P is precision and R is recall. The parameter β determines the relative importance of precision versus recall.
Precision and recall are defined as P = TP / (TP + FP) and R = TP / (TP + FN), using
In multiclass and multilabel settings, F-measures are computed using averaging schemes. Micro-averaged F aggregates TP, FP,
Applications and interpretation: F-measure is widely used in information retrieval and machine learning for model comparison,