BinaryClassificationMetrics.F1Score Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the F1 score of the classifier, which is a measure of the classifier's quality considering both precision and recall.
public double F1Score { get; }
member this.F1Score : double
Public ReadOnly Property F1Score As Double
Property Value
Remarks
F1 score is the harmonic mean of precision and recall: 2 * precision * recall / (precision + recall). F1 ranges between 0 and 1, with a value of 1 indicating perfect precision and recall.