Issue with visualizing using TensorBoard #27
Unanswered
StevenvdKamp
asked this question in
Ex_2
Replies: 1 comment
-
Hi, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
My issue: TensorBoard sessions returns a blank page.
I am trying to visualize the training metrics that are obtained in the second to last code block of the notebook. As far as I understand it these metrics are saved in events files in the folder
ex_2/runs/
.When the code block is finished with running, vscode automatically prompts to launch a TensorBoard session. It asks you to select the location of the events files and then opens up a port that should be able to be opened in the web browser (http://localhost:6006/). Unfortunately for me this only returns a totally blank page. (Note: It does not show that the site can't be reached)
Furthermore, doing it by hand with the command
tensorboard --logdir=ex_2/runs/test/
in the bash terminal in vscode gives me the same results; A fully blank page.It does look like that I have specified the correct logdir, as when I run the command
tensorboard --logdir=ex_2/runs/test/ --inspect
it returns something in the form of:Could somebody help me with get the TensorBoard visualizations working? Is there something I am missing or am doing wrong? Should I switch to a different visualization technique?
Thank you very much in advance!
Beta Was this translation helpful? Give feedback.
All reactions