tensorboard 可视化网络运行过程

在 tf.summary 里设置好要查看保存的参数后运行会生成 events.out.tfevents.{time}.{machine-name} 的文件,这个就是用 tensorboard 来查看的日志文件

当训练和验证的日志文件不在同一个文件中时,想同时查看两个日志,要转到上一层目录,使用命令tensorboard --logdir=event-dir(event路径),在浏览器中访问 localhost:6006 即可查看

具体查看:https://stackoverflow.com/questions/36182380/how-do-display-different-runs-in-tensorboard

猜你喜欢

转载自www.cnblogs.com/tccbj/p/10675701.html