-
Notifications
You must be signed in to change notification settings - Fork 11.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to calculate mean Average Recall (mAR)? #2178
Comments
Could you please share how did you do the compute_ap()? I cannot figure out where I can get teh gt_boxes, gt_class)ids, gt_masks...........! |
Hi, would also appreciate seeing an answer for @gchai123 question as I am also looking for a way to evaluate my custom test set for segmentation |
any new insights? |
Hi guys! |
I customized the "https://github.com/matterport/Mask_RCNN.git" repository to train with my own data set, for object detection, ignoring the segmentation part of the mask. Now, I am evaluating my results, I can calculate the MAP through the function: compute_ap, from "https://github.com/matterport/Mask_RCNN/blob/master/mrcnn/utils.py" which returns the "precisions, recalls, overlaps "for each image. I would like to know how can I calculate the mean Average Recall (mAR) using this function: compute_recall from "https://github.com/matterport/Mask_RCNN/blob/master/mrcnn/utils.py"?
The text was updated successfully, but these errors were encountered: