tensorboard 可视化网络运行过程

时间:2022-08-23 14:54:12

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

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

对于查看多个event的问题,具体查看:https://*.com/questions/36182380/how-do-display-different-runs-in-tensorboard