keras自定义损失函数并且模型加载的写法介绍

作者:Briwisdom 时间:2023-06-23 04:00:30 

keras自定义函数时候,正常在模型里自己写好自定义的函数,然后在模型编译的那行代码里写上接口即可。如下所示,focal_loss和fbeta_score是我们自己定义的两个函数,在model.compile加入它们,metrics里‘accuracy'是keras自带的度量函数。


def focal_loss():
...
return xx
def fbeta_score():
...
return yy
model.compile(optimizer=Adam(lr=0.0001), loss=[focal_loss],metrics=['accuracy',fbeta_score] )

训练好之后,模型加载也需要再额外加一行,通过load_model里的custom_objects将我们定义的两个函数以字典的形式加入就能正常加载模型啦。

weight_path = './weights.h5'
model = load_model(weight_path,custom_objects={'focal_loss': focal_loss,'fbeta_score':fbeta_score})

补充知识:keras如何使用自定义的loss及评价函数进行训练及预测

1.有时候训练模型,现有的损失及评估函数并不足以科学的训练评估模型,这时候就需要自定义一些损失评估函数,比如focal loss损失函数及dice评价函数 for unet的训练。

2.在训练建模中导入自定义loss及评估函数。


#模型编译时加入自定义loss及评估函数
model.compile(optimizer = Adam(lr=1e-4), loss=[binary_focal_loss()],
   metrics=['accuracy',dice_coef])

#自定义loss及评估函数
def binary_focal_loss(gamma=2, alpha=0.25):
"""
Binary form of focal loss.
适用于二分类问题的focal loss
focal_loss(p_t) = -alpha_t * (1 - p_t)**gamma * log(p_t)
 where p = sigmoid(x), p_t = p or 1 - p depending on if the label is 1 or 0, respectively.
References:
 https://arxiv.org/pdf/1708.02002.pdf
Usage:
 model.compile(loss=[binary_focal_loss(alpha=.25, gamma=2)], metrics=["accuracy"], optimizer=adam)
"""
alpha = tf.constant(alpha, dtype=tf.float32)
gamma = tf.constant(gamma, dtype=tf.float32)

def binary_focal_loss_fixed(y_true, y_pred):
 """
 y_true shape need be (None,1)
 y_pred need be compute after sigmoid
 """
 y_true = tf.cast(y_true, tf.float32)
 alpha_t = y_true * alpha + (K.ones_like(y_true) - y_true) * (1 - alpha)

p_t = y_true * y_pred + (K.ones_like(y_true) - y_true) * (K.ones_like(y_true) - y_pred) + K.epsilon()
 focal_loss = - alpha_t * K.pow((K.ones_like(y_true) - p_t), gamma) * K.log(p_t)
 return K.mean(focal_loss)

return binary_focal_loss_fixed

#'''
#smooth 参数防止分母为0
def dice_coef(y_true, y_pred, smooth=1):
intersection = K.sum(y_true * y_pred, axis=[1,2,3])
union = K.sum(y_true, axis=[1,2,3]) + K.sum(y_pred, axis=[1,2,3])
return K.mean( (2. * intersection + smooth) / (union + smooth), axis=0)

注意在模型保存时,记录的loss函数名称:你猜是哪个

a:binary_focal_loss()

b:binary_focal_loss_fixed

3.模型预测时,也要加载自定义loss及评估函数,不然会报错。

该告诉上面的答案了,保存在模型中loss的名称为:binary_focal_loss_fixed,在模型预测时,定义custom_objects字典,key一定要与保存在模型中的名称一致,不然会找不到loss function。所以自定义函数时,尽量避免使用我这种函数嵌套的方式,免得带来一些意想不到的烦恼。

model = load_model('./unet_' + label + '_20.h5',custom_objects={'binary_focal_loss_fixed': binary_focal_loss(),'dice_coef': dice_coef})

来源:https://blog.csdn.net/u010420283/article/details/90232926

标签:keras,损失函数,模型,加载
0
投稿

猜你喜欢

  • MYSQL5 下的兼容说明(my.ini my.conf)

    2008-02-23 10:13:00
  • Java数据库连接池之c3p0简介_动力节点Java学院整理

    2024-01-19 18:16:03
  • RC4经典加密算法asp/VBs版本代码

    2008-02-17 17:32:00
  • jquery+ajax+C#实现无刷新操作数据库数据的简单实例

    2024-01-15 03:26:34
  • 详解 python logging日志模块

    2021-05-07 19:59:01
  • python如何将多个模型的ROC曲线绘制在一张图(含图例)

    2023-06-24 00:28:54
  • 用Python实现一本个性化日历

    2021-02-11 08:59:44
  • Golang 统计字符串字数的方法示例

    2024-02-17 07:35:44
  • Python Pandas 修改表格数据类型 DataFrame 列的顺序案例

    2023-02-27 17:47:37
  • ThinkPHP框架实现用户信息查询更新及删除功能示例

    2024-06-07 15:34:11
  • 详解Python中的正斜杠与反斜杠

    2021-06-28 08:38:10
  • pytorch1.0中torch.nn.Conv2d用法详解

    2023-07-17 10:53:48
  • FrontPage服务器扩展

    2008-03-05 13:05:00
  • matlab中imadjust函数的作用及应用举例

    2021-09-12 21:34:06
  • python启动办公软件进程(word、excel、ppt、以及wps的et、wps、wpp)

    2022-06-12 23:09:48
  • 使用python实现离散时间傅里叶变换的方法

    2021-10-26 19:44:07
  • python urllib urlopen()对象方法/代理的补充说明

    2023-06-28 17:44:07
  • pygame 键盘事件的实践

    2023-09-29 18:56:10
  • 关于VSCode 配置使用 PyLint 语法检查器的问题

    2023-06-18 17:10:33
  • 在OneProxy的基础上实行MySQL读写分离与负载均衡

    2024-01-12 22:54:28
  • asp之家 网络编程 m.aspxhome.com