报错提示:

cifar10_input.py : AttributeError: module 'tensorflow' has no attribute 'histogram_summary'

报错原因:Tensorflow版本冲突,histogram_summary方法已经改名

解决方案:执行如下修改

# 报错代码
tf.histogram_summary(tensor_name + '/activations', x)

# 改正代码
tf.summary.histogram(tensor_name + '/activations', x)