本文主要是介绍TypeError reduce_sum() got an unexpected keyword argument 'reduction_indice',希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
运行tensorflow代码:
loss = tf.reduce_mean(tf.reduce_sum(tf.square(ys - prediction), reduction_indices=[1]))
错误提示: TypeError: reduce_sum() got an unexpected keyword argument ‘reduction_indice’
出错原因: 在reduce_sum()
函数中参数:reduction_indices
已经被废弃,取而代之的是参数:axis
修改tensorflow代码为:
loss = tf.reduce_mean(tf.reduce_sum(tf.square(ys - prediction), axis=[1]))
运行成功。
这篇关于TypeError reduce_sum() got an unexpected keyword argument 'reduction_indice'的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!