当前位置: 移动技术网 > IT编程>脚本编程>Python > Keras自定义IOU方式

Keras自定义IOU方式

2020年06月18日  | 移动技术网IT编程  | 我要评论

太空飞鼠全集,孙爱荣吧,射流真空泵

我就废话不多说了,大家还是直接看代码吧!

def iou(y_true, y_pred, label: int):
  """
  return the intersection over union (iou) for a given label.
  args:
    y_true: the expected y values as a one-hot
    y_pred: the predicted y values as a one-hot or softmax output
    label: the label to return the iou for
  returns:
    the iou for the given label
  """
  # extract the label values using the argmax operator then
  # calculate equality of the predictions and truths to the label
  y_true = k.cast(k.equal(k.argmax(y_true), label), k.floatx())
  y_pred = k.cast(k.equal(k.argmax(y_pred), label), k.floatx())
  # calculate the |intersection| (and) of the labels
  intersection = k.sum(y_true * y_pred)
  # calculate the |union| (or) of the labels
  union = k.sum(y_true) + k.sum(y_pred) - intersection
  # avoid divide by zero - if the union is zero, return 1
  # otherwise, return the intersection over union
  return k.switch(k.equal(union, 0), 1.0, intersection / union)
 
def mean_iou(y_true, y_pred):
  """
  return the intersection over union (iou) score.
  args:
    y_true: the expected y values as a one-hot
    y_pred: the predicted y values as a one-hot or softmax output
  returns:
    the scalar iou value (mean over all labels)
  """
  # get number of labels to calculate iou for
  num_labels = k.int_shape(y_pred)[-1] - 1
  # initialize a variable to store total iou in
  mean_iou = k.variable(0)
  
  # iterate over labels to calculate iou for
  for label in range(num_labels):
    mean_iou = mean_iou + iou(y_true, y_pred, label)
    
  # divide total iou by number of labels to get mean iou
  return mean_iou / num_labels

补充知识:keras 自定义评估函数和损失函数loss训练模型后加载模型出现valueerror: unknown metric function:fbeta_score

keras自定义评估函数

有时候训练模型,现有的评估函数并不足以科学的评估模型的好坏,这时候就需要自定义一些评估函数,比如样本分布不均衡是准确率accuracy评估无法判定一个模型的好坏,这时候需要引入精确度和召回率作为评估标准,不幸的是keras没有这些评估函数。

以下是参考别的文章摘取的两个自定义评估函数

召回率:

def recall(y_true, y_pred):
  true_positives = k.sum(k.round(k.clip(y_true * y_pred, 0, 1)))
  possible_positives = k.sum(k.round(k.clip(y_true, 0, 1)))
  recall = true_positives / (possible_positives + k.epsilon())
  return recall

精确度:

def precision(y_true, y_pred):
  true_positives = k.sum(k.round(k.clip(y_true * y_pred, 0, 1)))
  predicted_positives = k.sum(k.round(k.clip(y_pred, 0, 1)))
  precision = true_positives / (predicted_positives + k.epsilon())
  return precision

自定义了评估函数,一般在编译模型阶段加入即可:

model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy', precision, recall])

自定义了损失函数focal_loss一般也在编译阶段加入:

model.compile(optimizer=adam(lr=0.0001), loss=[focal_loss],
metrics=['accuracy',fbeta_score], )

其他的没有特别要注意的点,直接按照原来的思路训练一版模型出来就好了,关键的地方在于加载模型这里,自定义的函数需要特殊的加载方式,不然会出现加载没有自定义函数的问题:valueerror: unknown loss function:focal_loss

解决方案:

model_name = 'test_calssification_model.h5'
model_dfcw = load_model(model_name,
            custom_objects={'focal_loss': focal_loss,'fbeta_score':fbeta_score})

注意点:将自定义的损失函数和评估函数都加入到custom_objects里,以上就是在自定义一个损失函数从编译模型阶段到加载模型阶段出现的所有的问题。

以上这篇keras自定义iou方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网