Win10 Anaconda Tensorboard 使用

背景:

电脑是win10, anaconda下创建了名字是tensorflow的虚拟环境,顾名思义其下放着有关tensorflow的模块

介绍:

在anaconda下安装tensorflow会默认连tensorboard一起安装上。使用tensorboard的好处是可以实时的监控网络的走向。

怎么用:

1.  找 tensorboard.exe

因为我创建了名为tensorflow的虚拟环境,故在其下方找。下边给出路径

D:\anaconda\envs\tensorflow\Scripts

2. 先通过鼠标点击进入上边的目录,在空白地方,同时按shift键 + 鼠标左键,如下图

Win10 Anaconda Tensorboard 使用_第1张图片

 3. 找到代码中指定的保存tensorboard的目录,如

tensorboard_dir="../tensorboard_dir/basics/Example/

4. 在打开的Powershell中执行

.\tensorboard.exe --logdir="..\tensorboard_dir\basics\Example\" 

5. 回车后,将在Powershell下方显示一个URL链接,如

TensorBoard 1.13.1 at http://HelloWorld:1234 (Press CTRL+C to quit)

6. 复制该链接到浏览器即可打开tensorboard,进行实时观测

tips:选中后使用 ctrl + shift + c 复制


 

你可能感兴趣的:(深度学习,python)