Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any pytorch tools to monitor neural network's training?

Are there any tools to monitor network's training in PyTorch? Like tensorboard in tensorflow.

like image 988
Dong Li Avatar asked Aug 05 '17 07:08

Dong Li


1 Answers

PyTorch 1.1.0 supports TensorBoard natively with torch.utils.tensorboard. The API is very similar to tensorboardX. See the documentation for more details.

like image 120
Fábio Perez Avatar answered Oct 05 '22 20:10

Fábio Perez