无法通过Tensorboard查看图表

时间:2017-08-24 11:52:33

标签: python-3.x tensorboard

我是TensorFlow的新手,无法查看我的图表。

`a = tf.add(1, 2,)
 b = tf.multiply(a, 3)
 c = tf.add(4, 5,)
 d = tf.multiply(c, 6,)
 e = tf.multiply(4, 5,)
 f = tf.div(c, 6,)
 g = tf.add(b, d)
 h = tf.multiply(g, f)
 with tf.Session() as sess:
    writer = tf.summary.FileWriter("log", sess.graph)
    print(sess.run(h))
 writer.close()

然后我输入     Tensorboard --logdir log

并且有 TensorBoard 0.1.4 at http://lpt00:6006 (Press CTRL+C to quit), 但是在这个页面上我只看到了文字" Tensorboard:Inactive"

0 个答案:

没有答案