Keras自定义IOU方式


Posted in Python onJune 10, 2020

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

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方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
详解Python的迭代器、生成器以及相关的itertools包
Apr 02 Python
Python 装饰器深入理解
Mar 16 Python
Django中利用filter与simple_tag为前端自定义函数的实现方法
Jun 15 Python
python+selenium+autoit实现文件上传功能
Aug 23 Python
Python下载网络小说实例代码
Feb 03 Python
python3中os.path模块下常用的用法总结【推荐】
Sep 16 Python
Python+pyplot绘制带文本标注的柱状图方法
Jul 08 Python
Python获取统计自己的qq群成员信息的方法
Nov 15 Python
Python 模拟动态产生字母验证码图片功能
Dec 24 Python
对tensorflow中的strides参数使用详解
Jan 04 Python
python 爬取古诗文存入mysql数据库的方法
Jan 08 Python
Python API len函数操作过程解析
Mar 05 Python
Python实现在线批量美颜功能过程解析
Jun 10 #Python
浅谈keras中的目标函数和优化函数MSE用法
Jun 10 #Python
keras 解决加载lstm+crf模型出错的问题
Jun 10 #Python
使用Keras加载含有自定义层或函数的模型操作
Jun 10 #Python
keras 获取某层的输入/输出 tensor 尺寸操作
Jun 10 #Python
Python 字典中的所有方法及用法
Jun 10 #Python
在keras 中获取张量 tensor 的维度大小实例
Jun 10 #Python
You might like
PHP中通过ADO调用Access数据库的方法测试不通过
2006/12/31 PHP
PHP Google的translate API代码
2008/12/10 PHP
探讨如何使用SimpleXML函数来加载和解析XML文档
2013/06/07 PHP
在PHP上显示JFreechart画的统计图方法
2013/11/03 PHP
PHP实现PDO的mysql数据库操作类
2014/12/12 PHP
PHP获取当前URL路径的处理方法(适用于多条件筛选列表)
2017/02/10 PHP
使用jquery实现select添加实现后台权限添加的效果
2011/05/28 Javascript
jQuery中事件对象e的事件冒泡用法示例介绍
2014/04/25 Javascript
详解JavaScript中void语句的使用
2015/06/04 Javascript
深入理解Ajax的get和post请求
2016/06/02 Javascript
自己封装的一个原生JS拖动方法(推荐)
2016/11/22 Javascript
JavaScript cookie详解及简单实例应用
2016/12/31 Javascript
weex slider实现滑动底部导航功能
2017/08/28 Javascript
详解用Node.js实现Restful风格webservice
2017/09/29 Javascript
不到200行 JavaScript 代码实现富文本编辑器的方法
2018/01/03 Javascript
浅谈Vue.use的使用
2018/08/29 Javascript
微信小程序云开发如何使用npm安装依赖
2019/05/18 Javascript
微信小程序开发之左右分栏效果的实例代码
2019/05/20 Javascript
vue前后分离调起微信支付
2019/07/29 Javascript
layui表格设计以及数据初始化详解
2019/10/26 Javascript
判断JavaScript中的两个变量是否相等的操作符
2019/12/21 Javascript
Javascript基于OOP实实现探测器功能代码实例
2020/08/26 Javascript
js通过canvas生成图片缩略图
2020/10/02 Javascript
Python 条件判断的缩写方法
2008/09/06 Python
Python监控主机是否存活并以邮件报警
2015/09/22 Python
Python使用filetype精确判断文件类型
2017/07/02 Python
Python中最大最小赋值小技巧(分享)
2017/12/23 Python
windows环境中利用celery实现简单任务队列过程解析
2019/11/29 Python
将数据集制作成VOC数据集格式的实例
2020/02/17 Python
django admin 添加自定义链接方式
2020/03/11 Python
python中用Scrapy实现定时爬虫的实例讲解
2021/01/18 Python
十佳美德少年事迹材料
2014/02/05 职场文书
语文教学感言
2014/02/06 职场文书
咖啡厅里的创业计划书
2019/08/21 职场文书
聊聊Python中关于a=[[]]*3的反思
2021/06/02 Python
MyBatis配置文件解析与MyBatis实例演示
2022/04/07 Java/Android