码迷,mamicode.com
首页 > 其他好文 > 详细

tensorflow 训练cifar10报错

时间:2017-07-26 17:54:29      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:margin   ref   histogram   elf   size   res   nbsp   lob   mic   

1、AttributeError: ‘module‘ object has noattribute ‘random_crop‘

解决方案:

将distorted_image= tf.image.random_crop(reshaped_image, [height, width])改为:

distorted_image = tf.random_crop(reshaped_image,[height, width,3])

2、AttributeError: ‘module’ object has no attribute’per_image_whitening’
‘per_image_whitening 改为:’per_image_standardization

3、‘module‘ object has no attribute ‘image_summary‘ ---->Please switch to tf.summary.image

4、AttributeError: ‘module‘ object has no attribute ‘histogram_summary‘

AttributeError: ‘module‘ object has no attribute ‘histogram_summary‘

>> histogram_summary 改为:tf.summary.histogram
5、AttributeError: ‘module‘ object has no attribute ‘scalar_summary‘
AttributeError: ‘module‘ object has no attribute ‘scalar_summary‘

>> tf.scalar_summary 改为:tf.summary.scalar

6、AttributeError: ‘module‘ object has no attribute ‘mul‘

 

According to the tensorflow 1.0.0 release notes,

 

tf.mul, tf.sub and tf.neg are deprecated in favor of tf.multiply, tf.subtract and tf.negative.

 

7、raise ValueError("Shapes %s and %s are incompatible" % (self, other))
ValueError: Shapes (2, 128, 1) and () are incompatible
 
 
 

 

tensorflow 训练cifar10报错

标签:margin   ref   histogram   elf   size   res   nbsp   lob   mic   

原文地址:http://www.cnblogs.com/YouXiangLiThon/p/7240108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!