ValueError: Only call `sparse_softmax_cross_entropy_with_logits` with named a

第五章中完整的训练MNIST数据的神经网络模型的程序代码中,直接运行程序的话会遇到以下的错误。

把下面的这行代码

 

# 计算交叉熵及其平均值
cross_entropy = tf.nn.sparse_softmax_cross_entropy_with_logits(y,tf.argmax(y_, 1))

#改为

cross_entropy = tf.nn.sparse_softmax_cross_entropy_with_logits(labels=tf.argmax(y_, 1), logits=y)

  

tf.initialize_all_variables.run()
AttributeError: 'function' object has no attribute 'run'

  tf.initialize_all_variables.run()

#改为
tf.global_variables_initializer().run()

 



posted @ 2018-11-09 14:00  苍洱  阅读(144)  评论(0编辑  收藏  举报