PSPNet-tensorflow icon indicating copy to clipboard operation
PSPNet-tensorflow copied to clipboard

PACC instead of mIoU

Open KodamaXYZ opened this issue 7 years ago • 1 comments

Hi Hellochick, i would like to get PACC evaluation instead of mIoU metrics do you know how i can implement it in the code? (i am using cityscapes) original: mIoU, update_op = tf.contrib.metrics.streaming_mean_iou(pred, gt, num_classes=num_classes)

if i change the tf function to: image

will i get the pixel accuracy?

or this image

KodamaXYZ avatar Dec 02 '18 22:12 KodamaXYZ

Hi Hellochick, i would like to get PACC evaluation instead of mIoU metrics do you know how i can implement it in the code? (i am using cityscapes) original: mIoU, update_op = tf.contrib.metrics.streaming_mean_iou(pred, gt, num_classes=num_classes)

if i change the tf function to: image

will i get the pixel accuracy?

or this image

The two are Pixel Accuracy and mean Pixel Accuracy. You can learn about them.

REFunction avatar Apr 08 '19 09:04 REFunction