用 jupyter notebook 关闭张量板的正确方法是什么?
我正在我的 jupyter 笔记本上编写 tensorflow。要启动,我正在做:1。
!tensorboard --logdir = logs/
- 打开一个新的浏览器选项卡并输入
localhost:6006
要关闭,我只是这样做:
- 关闭浏览器上的 tensorflow 选项卡
- 在 jupyter notebook 上,我点击中断内核
只是想知道这是否是正确的方法....
顺便说一句,在我的代码中,我将日志文件设置为“./log/log1”。启动张量板时,我应该使用--logdir = ./log
or--logdir = ./log/log1
吗?
非常感谢您。