Aggregate charts
If your runs are using the same summary tags (e.g. tf.summary.scalar('loss', loss)
) and are saving their events file in subdirs of the same root dir (e.g. /model_results/run_1/
, /model_results/run_2/
, ...), then by opening Tensorboard on the root dir (tensorboard --logdir=/model_results/
) you should be able to see your plots aggregated by tags (at least for recent versions of Tensorboard).
Display average/variance over runs
This seems like a duplicate of How to display the average of multiple runs on tensorboard. @Alex's solution there is quite thorough, using EventAccumulator
to combine the scalar summaries over several files and tf.Summary()
to write back the accumulated values (mean, variance, etc.).