Skip to content

Instantly share code, notes, and snippets.

@yaroslavvb
Created October 19, 2016 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yaroslavvb/710a16fe93f0c91c7e052fcb5b0bccc0 to your computer and use it in GitHub Desktop.
Save yaroslavvb/710a16fe93f0c91c7e052fcb5b0bccc0 to your computer and use it in GitHub Desktop.
iterating over TensorBoard event files
import tensorflow as tf
fn = "/tmp/efs/yaroslav/g/train_1/events.out.tfevents.1476852642.g-w-1-vblgv"
for summary in tf.train.summary_iterator():
print(summary)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment