Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Feb 26, 2019
1 parent a6fdc74 commit eb6a4b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,9 @@ def test(

cocoEval = COCOeval(cocoGt, cocoDt, 'bbox')
cocoEval.params.imgIds = imgIds # [:32] # only evaluate these images
cocoEval.evaluate().accumulate().summarize()
cocoEval.evaluate()
cocoEval.accumulate()
cocoEval.summarize()

# Return mAP
return mean_mAP, mean_R, mean_P
Expand Down

0 comments on commit eb6a4b5

Please sign in to comment.