1. AttributeError: 'module' object has no attribute 'SummaryWriter'

tf.train.SummaryWriter 改为:tf.summary.FileWriter

2. AttributeError: 'module' object has no attribute 'summaries'

tf.merge_all_summaries() 改为:summary_op = tf.summary.merge_all()

3. AttributeError: 'module' object has no attribute 'histogram_summary'

tf.histogram_summary() 改为:tf.summary.histogram()

tf.scalar_summary() 改为:tf.summary.scalar() 

tf.image_summary() 改为:tf.summary.image()

4. AttributeError: 'module' object has no attribute 'scalar_summary'

tf.scalar_summary('images', images) 改为:tf.summary.scalar('images', images)

tf.image_summary('images', images) 改为:tf.summary.image('images', images)

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

cifar10.loss(labels, logits)

改为:cifar10.loss(logits=logits, labels=labels)

cross_entropy = tf.nn.softmax_cross_entropy_with_logits(logits, dense_labels, name='cross_entropy_per_example')

改为:cross_entropy = tf.nn.softmax_cross_entropy_with_logits(logits=logits, labels=dense_labels, name='cross_entropy_per_example')

7. TypeError: Using a `tf.Tensor` as a Python `bool` is not allowed. Use `if t is not None:` instead of `if t:` to test if a tensor is defined.

if grad: 改为  if grad is not None:

8. ValueError: Shapes (2, 128, 1) and () are incompatible.

concated = tf.concat(1, [indices, sparse_labels]) 改为:concated = tf.concat([indices, sparse_labels], 1)

最新文章

  1. 关于HTML5的拖拽
  2. 我的c++学习(3)字符的输入输出
  3. poj 3259 Wormholes 判断负权值回路
  4. 推荐一个 angular 图像加载插件
  5. -exec和|xargs
  6. Nagios "process_cgivars()" 单字节溢出漏洞
  7. 最短路--Dijkstra算法 --HDU1790
  8. 阿里云Linux挂载数据盘
  9. HTTP协议中GET和POST区别
  10. [Flume][Kafka]Flume 与 Kakfa结合例子(Kakfa 作为flume 的sink 输出到 Kafka topic)
  11. 【noip模拟赛1】古韵之同心锁
  12. Pycharm快捷键整理(Mac)
  13. linux驱动程序:控制发光二极管
  14. Django_QueryDict
  15. NOI2002_ Galaxy银河英雄传说86
  16. java变量深入理解
  17. WPF教程四:布局之DockPanel面板
  18. Windows上编译zlib
  19. c#中的classes和objects一些知识【1】
  20. Sandglass

热门文章

  1. Unity3d 配置OpenCV(EmguCV) 周围环境
  2. 学习鸟哥的Linux私房菜笔记(12)——系统监视2
  3. HDU 树型dp
  4. cxf整合spring发布rest服务 httpclient访问服务
  5. hibernate annotation 相关主键生成策略
  6. 在这里23种经典设计模式UML类图汇总
  7. Computer system with dual operating modes
  8. 推断(inference)、贝叶斯规则(Bayes's rule)与导出分布(derived distribution)
  9. c语言学习笔记(13)——链表
  10. WPF MVVM系列文章