You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
103 B
Matlab

function f1=calc_f1score(stats)
TP=stats(:,1);
FP=stats(:,2);
FN=stats(:,3);
f1=2.*TP./(2.*TP+FP+FN);