btguijiyang 2019-05-05 14:51 采纳率: 100%
浏览 4380
已采纳

tensorflow自定义的损失函数 focal_loss出现inf,在训练过程中出现inf

图片说明

def focal_loss(alpha=0.25, gamma=2.):
    """ focal loss used for train positive/negative samples rate out 
    of balance, improve train performance
    """
    def focal_loss_calc(y_true, y_pred):
        positive = tf.where(tf.equal(y_true, 1), y_pred, tf.ones_like(y_pred))
        negative = tf.where(tf.equal(y_true, 0), y_pred, tf.zeros_like(y_pred))
        return -(alpha*K.pow(1.-positive, gamma)*K.log(positive) +
                       (1-alpha)*K.pow(negative, gamma)*K.log(1.-negative))
    return focal_loss_calc
self.keras_model.compile(optimizer=optimizer, loss=dice_focal_loss, metrics=[ mean_iou, dice_loss, focal_loss()])

上面的focal loss 开始还是挺正常的,随着训练过程逐渐减小大0.025左右,然后就突然变成inf。何解

  • 写回答

1条回答 默认 最新

  • btguijiyang 2019-06-13 23:47
    关注

    解决方法

    def focal_loss_calc(alpha=0.25, gamma=2., epsilon=1e-6):
        """ focal loss used for train positive/negative samples rate out 
        of balance, improve train performance
        """
        def focal_loss(y_true, y_pred):
            positive = tf.where(tf.equal(y_true, 1), y_pred, tf.ones_like(y_pred))
            negative = tf.where(tf.equal(y_true, 0), y_pred, tf.zeros_like(y_pred))
            return -alpha*K.pow(1.-positive, gamma)*K.log(positive+epsilon) - \
                (1-alpha)*K.pow(negative, gamma)*K.log(1.-negative+epsilon)
        return focal_loss
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 关于#java#的问题,请各位专家解答!
  • ¥30 vue+element根据数据循环生成多个table,如何实现最后一列 平均分合并
  • ¥20 pcf8563时钟芯片不启振
  • ¥20 pip2.40更新pip2.43时报错
  • ¥15 换yum源但仍然用不了httpd
  • ¥50 C# 使用DEVMOD设置打印机首选项
  • ¥15 麒麟V10 arm安装gdal
  • ¥20 OPENVPN连接问题
  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备