From cb0c60bf7a0cc2d97915ed6585224ea842d3f45f Mon Sep 17 00:00:00 2001 From: Shiv Dhar Date: Wed, 26 Aug 2020 11:48:59 +0530 Subject: [PATCH] Fix typo (#3174) --- pytorch_lightning/metrics/functional/classification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytorch_lightning/metrics/functional/classification.py b/pytorch_lightning/metrics/functional/classification.py index c80bc5599a..7932483ff7 100644 --- a/pytorch_lightning/metrics/functional/classification.py +++ b/pytorch_lightning/metrics/functional/classification.py @@ -140,7 +140,7 @@ def stat_scores_multiple_classes( reduction: str = 'none', ) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]: """ - Calculates the number of true postive, false postive, true negative + Calculates the number of true positive, false positive, true negative and false negative for each class Args: