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

tensorflow-计算图(2)

时间:2018-12-24 00:09:04      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:tensor   bin   const   flow   res   create   with   reset   imp   

#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Sun Dec 23 11:26:04 2018 @author: myhaspl """ import tensorflow as tf #创建图 c=tf.constant(0.0) g=tf.Graph() with g.as_default(): c1=tf.constant(0.1) g2=tf.get_default_graph() print(g2) tf.reset_default_graph() g3=tf.get_default_graph() print(g3) print(c1.name)

<tensorflow.python.framework.ops.Graph object at 0xb19ce09b0>
<tensorflow.python.framework.ops.Graph object at 0xb19ce0e48>
Const:0
重置计算图以及获得tensor

tensorflow-计算图(2)

标签:tensor   bin   const   flow   res   create   with   reset   imp   

原文地址:http://blog.51cto.com/13959448/2334344

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