torchmetrics icon indicating copy to clipboard operation
torchmetrics copied to clipboard

Torchmetrics - Machine learning metrics for distributed, scalable PyTorch applications.

Results 208 torchmetrics issues
Sort by recently updated
recently updated
newest added

## 🐛 Bug `Accuracy` (functional implementation; most likely the module as well) gives conflicting results. `StatScores` (functional) does give expected results when I follow the docs. As so many input...

bug / fix
help wanted

## 🐛 Bug Binned Precision Recall Curve not working expected with multi-class and multi-dimensional input/target ### To Reproduce Steps to reproduce the behavior: 1. Go to 'torchmetrics/classification/binned_precision_recall.py' 2. See line...

bug / fix
help wanted

## 🐛 Bug torchmetrics.functional.stat_scores gives out wrong values ### To Reproduce Steps to reproduce the behavior: ```py preds = torch.tensor([1, 0, 0, 1]) target = torch.tensor([1, 1, 0, 0]) stat_scores(preds,target)...

bug / fix
help wanted

## 🚀 Feature First of all, thank you very much for this awesome project. It helps a lot evaluating deep learning models on standard and out-of-the-box metrics for several application...

enhancement
Important

## 🐛 Bug F1 doesn't ignore indices properly. ### To Reproduce Run the following code. ```python import torch from torchmetrics import F1 f1 = F1(ignore_index=0) f1(torch.tensor([1, 1, 1, 1, 2,...

bug / fix
help wanted

## 🚀 Feature Hi in the sklearn API there is a `multi_class` parameters which can be set to ‘ovr or ‘ovo'. But it seems that this is not yet implemented...

enhancement

## 🚀 Feature Have fbeta binary metric following sklearn ### Motivation This is used and is the default in sklearn. It can be misleading if people use it without thinking....

enhancement
good first issue

## 🐛 Bug Computing F1 with `average="samples"` and `mdmc_average=samplewise` seems to take into consideration all samples, including those that are ignored. Not sure if this is a bug or I...

bug / fix
documentation
help wanted

## 🚀 Feature Support float targets (possibly softened one-hot encodings) for classification metrics. ### Motivation Techniques such as mixup or label smoothing use one-hot encoded targets that are then converted...

enhancement
good first issue

## 🚀 Feature Make Dice a ModuleMetric similar to IoU ### Motivation Currently, the usability of Dice (functional metric) is no on par with that of (modular metric) IoU. ###...

enhancement
good first issue
New metric
API / design