tensorflow-计算图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tensorflow-计算图相关的知识,希望对你有一定的参考价值。

#!/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-计算图的主要内容,如果未能解决你的问题,请参考以下文章

TensorFlow_Fold计算图连接初探 Diamond计算图调试历程

机器学习之TensorFlow介绍

tensorflow计算图

TensorFlow计算模型—计算图

tensorflow中卷积层输出特征尺寸计算和padding参数解析

《30天吃掉那只 TensorFlow2.0》 2-2 三种计算图