icefall
icefall copied to clipboard
Tensorboard data from remote computer
Hello guys,
I've just completed TedLium3 training. But I did it on remote AWS machine. How can I see tensorboard data?
Should I download this file events.out.tfevents.1668622331.bdcf5ab79459.10825.0 to my computer and to open it using the Crhome ?
Thanks, AlexG.
You have at least the following two methods.
You can choose any of them.
cd /path/to/exp/tensorboard
# Assume events.out.tfevents.1668622331.bdcf5ab79459.10825.0 is in the current dir
tensorboard --logdir . --port 8008
tensorboard dev upload --logdir .
The first method will print a message, telling you to view it within your browser.
The second method will give you a public URL. (You need to use your google account for authentication for your first run.)
Since you did your exps on remote AWS machine, I think you have to use the second method, visit https://tensorboard.dev/ for more details.