Tensorboard - moduleNotFound:没有名为tensorflow.tensorboard的模块

时间:2017-10-05 06:59:55

标签: python-3.x tensorflow tensorboard

我已将Tensorflow 1.3.0保存在此路径中: C:\用户............ \ Anaconda3 \ ENVS \ tensorflow-1.3.1

在这个文件夹中我用conda安装了tensorboard。

当我启动时

tensorboard --logdir=/tensorflow-1.3.1/tensorflow/contrib/tensorboard

给我一​​个错误:moduleNotFound:没有名为tensorflow.tensorboard的模块

问题出在哪?

1 个答案:

答案 0 :(得分:0)

您不应该启动实际的张量板,而是要让tensorboard读取您在会话期间创建的日志。

因此,在脚本中的某个位置创建了一个路径,例如

logs_path = "./tmp/"

通过作者在会话中保存来自培训的日志:

writer = tf.train.SummaryWriter(logs_path, graph=tf.get_default_graph())

然后,为了显示日志中的值,您可以启动tensorflow并为其提供日志路径。

 tensorboard --logdir=./tmp --port 6006

然后,您可以使用指定端口打开浏览器。