Open weiting0032 opened 5 years ago
@WEITINGLIN32
and the for loop point need to be pass 12 times?
The body of loop for(point = 0; point < 11; point++)
will be executed only 11 times (not 12): https://ideone.com/ir2c1M
@WEITINGLIN32
and the for loop point need to be pass 12 times?
The body of loop
for(point = 0; point < 11; point++)
will be executed only 11 times: https://ideone.com/ir2c1M
Why it is 11 times?
@WEITINGLIN32 Because we should get 11 points from Precision-Recall curve: https://medium.com/@jonathan_hui/map-mean-average-precision-for-object-detection-45c121a31173
@AlexeyAB I want to ask why avg_precision neet to divide by 11 and the for loop point need to be pass 12 times?