当我在 cmd 中使用 tensorboard 和 win10
D:\python document\tensorflow>tensorboard –logdir=D:\python document\tensorflow 在 http://0.0.0.0:6006 启动 TensorBoard b’47’
但是当我打开网页时,它显示
“拨打 tcp 0.0.0.0:6006:connectex:请求的地址在其上下文中无效。”
然后我尝试了 localhost:6006,它显示
“没有找到标量数据。”
那我现在该怎么办
原文由 R.Wall 发布,翻译遵循 CC BY-SA 4.0 许可协议
参考 tensorflow issue#9701 。
在命令提示符下运行
tensorboard --logdir=YOUR_LOG_DIR --host=127.0.0.1
,然后在 chrome 中键入localhost:6006
,这对我有用(Win10、anaconda4.3.16、python3.5.3、tensorflow1.1.0)。