Alright so I want to calculate the F1 score for four pair of values for Precision P and Recall R. These pairs are:
Precision = (54.54, 60.0, 91.3, 95.23)
Recall = (0.02, 2.10, 0.18, 5.3)
The above is the percentage of these values
Precision1 = ( 0.5454 0.6000 0.9130 0.9523)
Recall1 = ( 0.0002 0.0210 0.0018 0.0530)
The following formula calculates the F1 score
In other words
Fscore = (2*Precision*Recall) / sum(Precision, Recall)
For both pairs of precision and recall values the results are:
Fscore = (0.03998534 4.05797101 0.35929165 10.04116184) #using the Precision/Recall
Fscore1 = (7.067742e-05 8.164059e-03 1.064827e-03 3.270282e-02) #Precision1/Recall1
However I am not sure about those numbers. Which of the two am I supposed to use? Am I missing something? I though the Fscore values range from 1 to 0. Do I have to normalize any of these numbers?