Is there a way to rapidly calculate the mAP for each image? #1073
Replies: 1 comment
-
The latest TorchMetrics documentation shows that mAP is calculated using |
Beta Was this translation helpful? Give feedback.
-
The latest TorchMetrics documentation shows that mAP is calculated using |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'd like to log the mAP for each image in my object detection dataset, and as far as I can tell, the only way to do that is to run
metric(preds, target)
after each image. This is very slow, so I'm wondering if there's a way formetric.compute()
to return metrics per image without having to call it individually for each image?Beta Was this translation helpful? Give feedback.
All reactions