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

SummaryWriter报错,改为tf summary FileWriter

时间:2019-02-01 21:07:58      阅读:345      评论:0      收藏:0      [点我收藏+]

标签:python   mon   接口   pre   writer   ref   大神   put   div   

不推荐使用SummaryWriter (来自tensorflow.Python.training.summary_io),将在2016-11-30之后删除。 
更新说明: 

请切换到tf.summary.FileWriter接口和行为是相同的; 这只是一个重命名。

比如原来代码:

 

with tf.Session() as sess:
	writer = tf.train.SummaryWriter("output", sess.graph)
	print(sess.run(h))
	writer.close()
需要修改为:

 

with tf.Session() as sess:
	writer = tf.summary.FileWriter("output", sess.graph)
	print(sess.run(h))
	writer.close()
通过这样修改,就可以运行了。

 

 

 

1. C++标准模板库从入门到精通 

 

 

2.跟老菜鸟学C++

3. 跟老菜鸟学python

4. 在VC2015里学会使用tinyxml库

5. 在Windows下SVN的版本管理与实战 

 http://edu.csdn.net/course/detail/2579

6.Visual Studio 2015开发C++程序的基本使用 

http://edu.csdn.net/course/detail/2570

7.在VC2015里使用protobuf协议

8.在VC2015里学会使用MySQL数据库




再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

SummaryWriter报错,改为tf summary FileWriter

标签:python   mon   接口   pre   writer   ref   大神   put   div   

原文地址:https://www.cnblogs.com/skiwnchh/p/10346966.html

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