How to use server-side tensorboard locally (ubuntu22.04)

1. Run TensorBoard on the server and ensure that the TensorBoard service has been started. For example:

tensorboard --logdir=logs

        Note that the logs path is filled in correctly.

2. Open a local terminal and use the following command to forward the port:

ssh -L 6006:localhost:6006 [email protected]

3. Open the browser and visit http://localhost:6006

Guess you like

Origin blog.csdn.net/Reading8/article/details/134399128