I\'ve run several training sessions with different graphs in TensorFlow. The summaries I set up show interesting results in the training and validation. Now, I\'d like to ta
You can simply use:
tensorboard --inspect --event_file=myevents.out
or if you want to filter a specific subset of events of the graph:
tensorboard --inspect --event_file=myevents.out --tag=loss
If you want to create something more custom you can dig into the
/tensorflow/python/summary/event_file_inspector.py
to understand how to parse the event files.