大家好,我正在尝试计算语义细分PACC。 用于我使用的
mIoU, update_op = tf.contrib.metrics.streaming_mean_iou(pred, gt,
num_classes=num_classes)
print('mIoU: {:04f}'.format(sess.run(mIoU)))
我尝试了一种类似的方法来获得像素精度:
Pacc, update_op = tf.contrib.metrics.accuracy(pred, gt)
print('Pixel accuracy is:'.format(sess.run(Pacc)))
但是出现以下错误:
TypeError: Tensor objects are only iterable when eager execution is
enabled. To iterate over this tensor use tf.map_fn.
张量流新手有没有更好的方法来获得像素精度? (这是语义细分模型https://github.com/hellochick/PSPNet-tensorflow)