我是靠谱客的博主 腼腆狗,最近开发中收集的这篇文章主要介绍keras报错:TypeError: Value passed to parameter 'input' has DataType bool not in list of allowed values,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

keras代码报错:
TypeError: Value passed to parameter 'input' has DataType bool not in list of allowed values: float32, float64, int32, uint8, int16, int8, complex64, int64, qint8, quint8, qint32, bfloat16, uint16, complex128, float16, uint32, uint64

报错代码:

from keras import backend as K

def errors(y_true, y_pred):

    return K.sum(K.not_equal(y_true, K.round(y_pred)))

错误分析:

K.sum不能直接对bool类型数据进行求和操作(tensorflow中tf.reduce_sum()也是)

解决办法:

return tf.reduce_mean(K.cast(K.equal(y_true, K.round(y_pred)),dtype = 'int32'))

 

思悟:不能把目光注视在输入类型问题上,要定位到具体问题代码上

最后

以上就是腼腆狗为你收集整理的keras报错:TypeError: Value passed to parameter 'input' has DataType bool not in list of allowed values的全部内容,希望文章能够帮你解决keras报错:TypeError: Value passed to parameter 'input' has DataType bool not in list of allowed values所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部