python - Is it possible to see tensorboard over ssh? -


i running tensorflow code remotely on ssh server. (e.g., ssh -x account@server.address)

on remote server, says you can navigate http://0.0.0.0:6006.

in case, how can check tensorboard? how can navigate address of remote machine? tried search, there seems no useful information.

0.0.0.0 wildcard address. thus, can use any address purpose unless system's firewall implementig more restrictive.

that said, let's assume is implementing firewall-based restrictions (if weren't, access http://server.address:6006/ -- else). in case:

ssh -l 16006:127.0.0.1:6006 account@server.address 

...and refer http://127.0.0.1:16006/ in local browser.


Comments