Running tensorboard in sagemaker

0

I'm unable to view tensorboard in sagemaker notebook instance. Tried 2 methods -

  1. Running in a notebook
!pip install tensorboard
%load_ext tensorboard
%tensorboard --logdir runs --host localhost --port 6006

Opening the link - https://<instance-url>/proxy/6006 shows failed to load active dashboards Enter image description here

  1. Running in notebook terminal
pip install tensorboard
tensorboard --logdir runs --host localhost --port 6006

Opening the link - https://<instance-url>/proxy/6006 shows blank image

  • Hi, what kernel are you using in that notebook?

asked a year ago232 views
1 Answer
0

Hi,

I tried to follow this third party blog and it seems to be working on my end when using conda_pytorch_latest_p36 kernel Enter image description here

Can you please check to follow same third party blog and let us know if it works for you or not

AWS
SUPPORT ENGINEER
Sam_E
answered a year ago
  • i've followed the same blog and got the same error. I'm using conda_pytorch_latest_p36 kernel

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions