wusize / ovdet

[CVPR2023] Code Release of Aligning Bag of Regions for Open-Vocabulary Object Detection
https://openaccess.thecvf.com/content/CVPR2023/papers/Wu_Aligning_Bag_of_Regions_for_Open-Vocabulary_Object_Detection_CVPR_2023_paper.pdf
Other
169 stars 4 forks source link

About the source of AP50 metric #32

Closed xiaoyi728 closed 8 months ago

xiaoyi728 commented 8 months ago

Hello, while conducting replication, I noticed that the final results only include AP50novel, AP50base, and other metrics. However, I couldn't find the AP50 values mentioned in Table 1 of the paper. Could you please clarify the source of these AP50 values? Thank you. 图片 图片

wusize commented 8 months ago

Hi! I did not include the calculation of AP50 in the released code. But you can calculate it manually by AP50 = (AP50_base*48 + AP50_novel*17) / 65.

xiaoyi728 commented 8 months ago

thank you for your reply