Skip to content

Commit e7547de

Browse files
authoredFeb 2, 2022
F1 calculation
return 0 if precision and recall are zero
1 parent f33552e commit e7547de

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎tensorflow_model.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,10 @@ def recall(self):
490490

491491
@property
492492
def f1(self):
493-
return 2 * self.precision * self.recall / (self.precision + self.recall)
493+
if self.precision + self.recall == 0:
494+
return 0
495+
else:
496+
return 2 * self.precision * self.recall / (self.precision + self.recall)
494497

495498

496499
class TopKAccuracyEvaluationMetric:

0 commit comments

Comments
 (0)
Please sign in to comment.