InterviewSolution
Saved Bookmarks
| 1. |
What is F1 score? How would you use it? |
|||||||||
|
Answer» Let’s have a look at this table before directly jumping into the F1 SCORE.
In binary classification we consider the F1 score to be a measure of the MODEL’s accuracy. The F1 score is a WEIGHTED average of precision and recall SCORES. F1 = 2TP/2TP + FP + FN We see scores for F1 between 0 and 1, where 0 is the worst score and 1 is the best score. |
||||||||||