icefall icon indicating copy to clipboard operation
icefall copied to clipboard

Tensorboard data from remote computer

Open AlexandderGorodetski opened this issue 3 years ago • 3 comments
trafficstars

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.

AlexandderGorodetski avatar Nov 18 '22 09:11 AlexandderGorodetski

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 .

csukuangfj avatar Nov 18 '22 09:11 csukuangfj

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.)

csukuangfj avatar Nov 18 '22 09:11 csukuangfj

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.

pkufool avatar Nov 18 '22 10:11 pkufool