What is the best way to extract recall and precision for a specific Intersection-over-Union threshold? #2152
Unanswered
bw4sz
asked this question in
CompVision
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all, thanks for this amazing work.
I mantain a python package for airborne object detection. I'd like to migrate from our custom IoU evaluation to this library. I see a the mAP and IoU metrics in the detection module.
Our current metric is the proportion of detections that overlap with targets of IoU > 0.4
Within a pytorch-lightning module I can define a metric
and call in during validation step
The docs are not clear to me, and I need a push in the right direction.
This discussion (#520) hints there is an argument, but it does not seem exist anymore. There is no arg reduction in torchmetrics.detection.IntersectionOverUnion.
This would allow me to calculate the recall and precision for the batch of detections.
The data is inside there to create the precision recall curve.
Beta Was this translation helpful? Give feedback.
All reactions