mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-24 14:44:21 +08:00
Fix Classify confusion matrix (#3241)
This commit is contained in:
parent
9c44560ec4
commit
9d38d2b044
@ -204,7 +204,7 @@ class ConfusionMatrix:
|
|||||||
"""
|
"""
|
||||||
preds, targets = torch.cat(preds)[:, 0], torch.cat(targets)
|
preds, targets = torch.cat(preds)[:, 0], torch.cat(targets)
|
||||||
for p, t in zip(preds.cpu().numpy(), targets.cpu().numpy()):
|
for p, t in zip(preds.cpu().numpy(), targets.cpu().numpy()):
|
||||||
self.matrix[t][p] += 1
|
self.matrix[p][t] += 1
|
||||||
|
|
||||||
def process_batch(self, detections, labels):
|
def process_batch(self, detections, labels):
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user