I want to inspect all values for a scalar in my event file. I don't want the aggregate statistics as returned by
tensorboard --inspect --event_file <summary_file> --tag <scalar_tag>
I want all information sufficient for reconstructing the scalar graph (i.e. the unsummarized ordered (x,y) pairs).
How can I do this either with tensorboard
or the TF Python API?
You could use a
tf.train.summary_iterator
, e.g.You may find that parsing your event file is slower than you would like, depending on how much data you put in there.