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 am wondering what is the motivation of using sum(intersect)/sum(union) instead of the mean over sample-wise intersect / union? The former one seems to disregard the testing samples are iid.
Thanks!
The text was updated successfully, but these errors were encountered:
I've noticed others raising similar queries, and unfortunately, there's no universally accepted method. I think it's crucial to specify which approach you're using, and to ensure that you compare the same mIoU when publishing a paper.
I found the mIoU evaluation codes here:
semantic-segmentation-pytorch/eval.py
Line 98 in 8f27c9b
I am wondering what is the motivation of using
sum(intersect)/sum(union)
instead of the mean over sample-wiseintersect / union
? The former one seems to disregard the testing samples are iid.Thanks!
The text was updated successfully, but these errors were encountered: