gpt4 book ai didi

tensorflow - 如何使用 tensorflow 2.0 将图形写入 tensorboard?

转载 作者:行者123 更新时间:2023-12-04 02:46:29 25 4
gpt4 key购买 nike

我在做这个

    # eager on
tf.summary.trace_on(graph=True, profiler=True)
tf.summary.trace_export('stuff', step=1, profiler_outdir='output')
# ... call train operation
tf.summary.trace_off()

配置文件部分显示在张量板上,但还没有图表。

最佳答案

请找到 github 要点 here我使用 Tf2.0 创建了一个图形并在张量板中对其进行了可视化。也请通过以下link了解更多信息.

下面提到了相同的代码:

!pip install tensorflow==2.0.0-beta1

import tensorflow as tf
# The function to be traced.
@tf.function
def my_func(x, y):
# A simple hand-rolled layer.
return tf.nn.relu(tf.matmul(x, y))

# Set up logging.
logdir = './logs/func'
writer = tf.summary.create_file_writer(logdir)

# Sample data for your function.
x = tf.random.uniform((3, 3))
y = tf.random.uniform((3, 3))

# Bracket the function call with
# tf.summary.trace_on() and tf.summary.trace_export().
tf.summary.trace_on(graph=True, profiler=True)
# Call only one tf.function when tracing.
z = my_func(x, y)
with writer.as_default():
tf.summary.trace_export(
name="my_func_trace",
step=0,
profiler_outdir=logdir)

%load_ext tensorboard
%tensorboard --logdir ./logs/func

如果回答有帮助,请点赞。谢谢!

关于tensorflow - 如何使用 tensorflow 2.0 将图形写入 tensorboard?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57036374/

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