Вы можете использовать dice_score для бинарных классов, а затем повторно использовать бинарные карты для всех классов, чтобы получить оценку для нескольких классов.
Я предполагаю, что ваши изображения / карты сегментации имеют формат (batch/index of image, height, width, class_map)
.
import numpy as np
import matplotlib.pyplot as plt
def dice_coef(y_true, y_pred):
y_true_f = y_true.flatten()
y_pred_f = y_pred.flatten()
intersection = np.sum(y_true_f * y_pred_f)
smooth = 0.0001
return (2. * intersection + smooth) / (np.sum(y_true_f) + np.sum(y_pred_f) + smooth)
def dice_coef_multilabel(y_true, y_pred, numLabels):
dice=0
for index in range(numLabels):
dice += dice_coef(y_true[:,:,:,index], y_pred[:,:,:,index])
return dice/numLabels # taking average
num_class = 5
imgA = np.random.randint(low=0, high= 2, size=(5, 64, 64, num_class) ) # 5 images in batch, 64 by 64, num_classes map
imgB = np.random.randint(low=0, high= 2, size=(5, 64, 64, num_class) )
plt.imshow(imgA[0,:,:,0]) # for 0th image, class 0 map
plt.show()
plt.imshow(imgB[0,:,:,0]) # for 0th image, class 0 map
plt.show()
dice_score = dice_coef_multilabel(imgA, imgB, num_class)
print(f'For A and B {dice_score}')
dice_score = dice_coef_multilabel(imgA, imgA, num_class)
print(f'For A and A {dice_score}')