What's the F1 score?
A classification model's F1-score is calculated as follows:
F1-Score=2(precisionrecal)/(precision + recal)
How would you use it?
It assesses the model data set's accuracy. Although accuracy is brutal to understand, the concept of the F1-score becomes more valuable in cases of unequal class distribution. Many machine learning models make use of it. It is used when false Negative and False Positives are more crucial in the data set than True positives and true negatives. It provides better results where the data is incorrectly classified.
Tags:
Machine learning