TensorFlow版本:在2.4 和 2.5上这样改就可以(已测试)
还有其他版本好像是调用 call 方法实现的IoU,所以需要对应需要修改 call 函数
Tensorflow中tf.keras.metrics.MeanIoU在预测返回值为one-hot编码的情况下使用IoU
class MeanIoU(tf.keras.metrics.MeanIoU):
def update_state(self, y_true, y_pred, sample_weight=None
TensorFlow版本:在2.4 和 2.5上这样改就可以(已测试)
还有其他版本好像是调用 call 方法实现的IoU,所以需要对应需要修改 call 函数
Tensorflow中tf.keras.metrics.MeanIoU在预测返回值为one-hot编码的情况下使用IoU
class MeanIoU(tf.keras.metrics.MeanIoU):
def update_state(self, y_true, y_pred, sample_weight=None