Whenever I try to run tensorboard in a jupyter notebook within visual studio code with this command tensorbard --logdir=runs, I get the message Launching TensorBoard.... However, Tensorboard never launches. Sometimes I also get an error message.
Any ideas on how to launch tensorboard within vscode?
EDIT:
I also tried running slightly optimized commands
%load_ext tensorboard
%tensorboard --logdir runs
but this only shows the message Launching Tensorboard... eternally.
Same result with
%reload_ext tensorboard
%tensorboard --logdir runs --host localhost --port 8888
Is there any tensorboard extension that embeds tensorboard into a cell output?
