报错提示:
cifar10_input.py : AttributeError: module 'tensorflow' has no attribute 'image_summary'
报错原因:Tensorflow版本冲突,没有image_summary方法
解决方案:执行如下修改
# 报错代码
tf.image_summary('images', images)
# 改正代码
tf.summary.image('images', images)
Changxing长行 博主文章分类:Python报错排坑 ©著作权
文章标签 tensorflow 解决方案 版本冲突 其他 文章分类 代码人生
报错提示:
cifar10_input.py : AttributeError: module 'tensorflow' has no attribute 'image_summary'
报错原因:Tensorflow版本冲突,没有image_summary方法
解决方案:执行如下修改
# 报错代码
tf.image_summary('images', images)
# 改正代码
tf.summary.image('images', images)
上一篇:【TensorFlow报错】AttributeError: module 'tensorflow._api.v1.image' has no attribute 'per_image_whitenin
下一篇:【TensorFlow报错】ValueError: Dimensions must be equal, but are 3 and 2 for 'random_crop/GreaterEqual'
报错提示:cifar10_input.py :AttributeError: module 'tensorflow' has no attribute 'scalar_summary'报错原因:Tensorflow版本冲突,scalar_summary方法已经改名解决方案:执行如下修改# 报错代码tf.scalar_summary(tensor_name + '/spars...
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M