mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
Fix f-score calculation if zero
This commit is contained in:
parent
6b0008afc6
commit
981cb89194
|
@ -140,6 +140,9 @@ def evaluate(tokenizer, textcat, texts, cats):
|
|||
fn += 1
|
||||
precision = tp / (tp + fp)
|
||||
recall = tp / (tp + fn)
|
||||
if (precision+recall) == 0:
|
||||
f_score = 0.0
|
||||
else:
|
||||
f_score = 2 * (precision * recall) / (precision + recall)
|
||||
return {"textcat_p": precision, "textcat_r": recall, "textcat_f": f_score}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user