I have a rather complicated Tensorflow graph that I\'d like to visualize for optimization purposes. Is there a function that I can call that will simply save the graph for v
For all clarity, this is how I used the .flush() method and resolved the issue:
.flush()
Initialize the writer with:
writer = tf.train.SummaryWriter("/home/rob/Dropbox/ConvNets/tf/log_tb", sess.graph_def)
and use the writer with:
writer.add_summary(summary_str, i) writer.flush()