gpt4 book ai didi

tensorflow - TensorFlow 2.0 Graph 可视化的一个简单案例

转载 作者:行者123 更新时间:2023-12-04 01:22:56 26 4
gpt4 key购买 nike

我想简单地定义一个模型并在 TensorBoard 中可视化它的图形以进行初始架构检查。因此,我不想为此目的计算任何东西。

在 TensorFlow 1.X 中,很容易在 tf.Session() 内实现我可以简单地flush()摘要文件编写器。

在 TensorFlow 2.0 中,没有 tf.Session()因此问题是我如何实现它?

下面是一个示例代码。为了在 TensorBoard 中编写图形结构,我需要添加哪些内容?

from nets import i3d
import tensorflow as tf

def i3d_output(model, x):
out, _ = model(x)
return out

tf.compat.v1.disable_eager_execution()
x = tf.random.uniform(shape=(4,179,224,224,3))
model = i3d.InceptionI3d()
net = i3d_output(model, x)
train_summary_writer = tf.summary.create_file_writer('/home/uujjwal/bmvc2019')

最佳答案

在图形模式下使用这个:

from tensorflow.python.summary.writer.writer import FileWriter
FileWriter('logs/', graph=tf.compat.v1.get_default_graph()).close()

或这个:
tf.compat.v1.summary.FileWriter('log/', graph=tf.compat.v1.get_default_graph()).close()

不需要在开幕 session 。

关于tensorflow - TensorFlow 2.0 Graph 可视化的一个简单案例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55432963/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com