运行 Sagemaker 中 Jupyter 中的 Tensorboard:无法访问此站点
Running Tensorboard in Jupyter in Sagemaker: this site can't be reached
我正在尝试 运行 从我在 Sagemaker 中的 Jupyter notebook 中的张量板。以下是我的代码:
import tensorflow as tf
import datetime, os
%load_ext tensorboard
logs_base_dir = "./logs"
os.makedirs(logs_base_dir)
!tensorboard --logdir=data/ --host localhost --port=8080
我得到的输出看起来不错:
TensorBoard 1.14.0 at http://localhost:8080/ (Press CTRL+C to quit)
但是当我点击 link 时,我被带到了 ERR_CONNECTION_REFUSED.
的页面
有人对接下来的尝试有什么建议吗?非常感谢!
张量流:1.14
Python: 2
根据评论,在我看来您试图打开错误 URL。如果我理解你的问题,你不在本地环境运行,所以你无法打开localhost
。文档中 sagemaker
的正确 URL 是 https://<notebook instance hostname>/proxy/6006/
我正在尝试 运行 从我在 Sagemaker 中的 Jupyter notebook 中的张量板。以下是我的代码:
import tensorflow as tf
import datetime, os
%load_ext tensorboard
logs_base_dir = "./logs"
os.makedirs(logs_base_dir)
!tensorboard --logdir=data/ --host localhost --port=8080
我得到的输出看起来不错:
TensorBoard 1.14.0 at http://localhost:8080/ (Press CTRL+C to quit)
但是当我点击 link 时,我被带到了 ERR_CONNECTION_REFUSED.
有人对接下来的尝试有什么建议吗?非常感谢!
张量流:1.14 Python: 2
根据评论,在我看来您试图打开错误 URL。如果我理解你的问题,你不在本地环境运行,所以你无法打开localhost
。文档中 sagemaker
的正确 URL 是 https://<notebook instance hostname>/proxy/6006/