You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that AverageMeter() is used in calculating the mAP and the output is the global avg, and this is not a problem when calculating accuracy.
However, the result of the mAP calculation should be obtained using all the predictions. Therefore the value of the last maper.value().numpy() should be used directly as the final result.
Am I understanding this correctly?
The text was updated successfully, but these errors were encountered:
Hi!
I noticed that
AverageMeter()
is used in calculating the mAP and the output is theglobal avg
, and this is not a problem when calculating accuracy.However, the result of the mAP calculation should be obtained using all the predictions. Therefore the value of the last
maper.value().numpy()
should be used directly as the final result.Am I understanding this correctly?
The text was updated successfully, but these errors were encountered: