Python】 ValueError: Only call `softmax_cross_entropy_with_logits` with named arguments

今天调用TensorFlow框架中的softmax_cross_entropy_with_logits()方法时,报了如下的错误:

ValueError: Only call `softmax_cross_entropy_with_logits` with named arguments (labels=..., logits=..., ...)

这个函数现在不能按照以前的方式调用了,以前的调用方式如下:

cost_sme = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(logits, labels))

使用新的调用方式,如下:

cost_sme = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(logits=logits, labels=labels))

 

上一篇:vue-cli 2.x项目使用cross-env新建多个打包环境


下一篇:UBoot的编译与烧写