princeton-vl / pose-ae-train

Training code for "Associative Embedding: End-to-End Learning for Joint Detection and Grouping"
BSD 3-Clause "New" or "Revised" License
373 stars 76 forks source link

Could you tell me why did you evaluate the image which has more than 1 person ? #10

Open LEESEYUN opened 6 years ago

LEESEYUN commented 6 years ago

in your test.py file

for idx, (a, b) in enumerate(zip(gt, dt)): if len(a)>0: <-----------------------

Why did you evaluate the images which have more than 1person ?

I evaluate the test2017 set which contains the zero persons image but AP is 58. xx ... But in your eval code this weight file shows AP 66

And how can I get the 63 AP in coco test _dev set that is in your paper ?

I test your pretrained model in COCO test_dev_2017 but I got the 58.xx ..

Thank you for your reply