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

tensorflow-计算图(1)

时间:2018-12-23 13:59:23      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:int   work   另一个   obj   spl   created   constant   rap   tensor   

#!/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) print(c1.graph) print(g) print(c.graph)

<tensorflow.python.framework.ops.Graph object at 0xb1cd345c0>
<tensorflow.python.framework.ops.Graph object at 0xb1cd345c0>
<tensorflow.python.framework.ops.Graph object at 0x10d1f6160>
从输出可以看出
print(c1.graph)
print(g)
输出为同一个计算图,
而 print(c.graph)为另一个计算图

tensorflow-计算图(1)

标签:int   work   另一个   obj   spl   created   constant   rap   tensor   

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

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