Skip to content

Commit d53fa32

Browse files
JKSenthilfacebook-github-bot
authored andcommitted
fix duplicate mask in f1_score (pytorch#145)
Summary: Pull Request resolved: pytorch#145 Reviewed By: ananthsub Differential Revision: D45188253 fbshipit-source-id: 6b29497cb849af78f80ea8aefdf7585a9476ac8a
1 parent 30c6954 commit d53fa32

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

torcheval/metrics/functional/classification/f1_score.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,7 @@ def _f1_score_compute(
227227
elif average == "macro":
228228
return f1.mean()
229229
elif average == "weighted":
230-
# pyre-fixme[61]: `mask` is undefined, or not always defined.
231-
return (f1 * (num_label[mask] / num_label.sum())).sum()
230+
return (f1 * (num_label / num_label.sum())).sum()
232231
else: # average is None
233232
return f1
234233

0 commit comments

Comments
 (0)