这是一个简单的代码,它使用张量流在计算图中创建单个节点:
import tensorflow as tf
tf.constant(5)
writer = tf.summary.FileWriter('./path', tf.Session().graph)
writer.close()
当我尝试使用张量板可视化此图形时,不会显示任何图形。这是我的终端代码:
tensorboard --logdir=[![enter image description here][1]][1]path --port 6006
我的代码出了什么问题?
答案 0 :(得分:1)
您的代码中没有计算图。只有顶点不做任何事情。创建一个至少有一个op:
的图表import tensorflow as tf
a = tf.constant(5)
b = tf.constant(5)
c = a + b
with tf.Session() as sess:
writer = tf.summary.FileWriter('path', sess.graph)
writer.close()
你会看到它