khiati rezkellah noureddine
Results
1
comments of
khiati rezkellah noureddine
Have the same issue, I used MulticlassF1Score with average None and it worked for me. (since dice is equivalent to F1 score : https://torchmetrics.readthedocs.io/en/stable/classification/f1_score.html#multiclassf1score:~:text=(values)-,MulticlassF1Score,-CLASS) `pred = torch.tensor([0,2,5,2,2,2,1])` `target= torch.tensor([0,1,5,2,1,2,1])` `dice...