andy-yun / pytorch-0.4-yolov3

Yet Another Implimentation of Pytroch 0.4.1 and YoloV3 on python3
MIT License
279 stars 72 forks source link

Where can i find mAP in code? #78

Closed richard0326 closed 5 years ago

richard0326 commented 5 years ago

I have searched valid.py source code and found this. Not mAP. In example of homepage they return mAP but I couldn't find it.

fps[cls_id].write('%s %f %f %f %f %f\n' % (fileId, prob, x1, y1, x2, y2))

return this... not mAP like example.

below is my return. 1

andy-yun commented 5 years ago

after executing valid.py, you should run my_eval.py for voc_data as: python scripts/my_eval.py results/comp4_dettest data/2007_test.txt data/voc.names

richard0326 commented 5 years ago

thank you!