360CVGroup / OVD_Contest

Public page for open vocabulary detection contest 2023
https://360cvgroup.github.io/OVD_Contest/
MIT License
6 stars 3 forks source link

结果上传疑问 #5

Closed msbrm closed 1 year ago

msbrm commented 1 year ago

对于novel类别的物体在上传结果时候应该填写什么类别呢

image image
SCUTjinchengli commented 1 year ago

您好,test.json中categories的1-233为base类,234-466为novel类,novel 类别的物体按照test.json中categories对应的id提交即可。 例如,给定3个bbox的特征,您预测的类别分别为”古董文玩“,”古董文玩“,”女士泳衣“,那您提交的json文件的三条数据中的category_id为别为1,1,466。提交的json文件如下 [{'image_id': xxx, 'category_id': 1, 'bbox': [xxx, xxx, xxx, xxx], 'score': xxx}, {'image_id': xxx, 'category_id': 1, 'bbox': [xxx, xxx, xxx, xxx], 'score': xxx}, {'image_id': xxx, 'category_id': 466, 'bbox': [xxx, xxx, xxx, xxx], 'score': xxx}]