Skip to content

Commit

Permalink
add code to visualize tensorfolow models in tensorboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
qfgaohao committed Jun 18, 2018
1 parent bf0e2d1 commit b1f1fb0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions visual_tf_models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import tensorflow as tf
from tensorflow.python.platform import gfile
import sys
import time

if len(sys.argv) < 2:
print("Usage: python visual_tf_model.py <model.pb>")
sys.exit(0)

model_file_name = sys.argv[1]
with tf.Session() as sess:
with gfile.FastGFile(model_file_name, 'rb') as f:
graph_def = tf.GraphDef()
graph_def.ParseFromString(f.read())
g_in = tf.import_graph_def(graph_def)
LOGDIR='log'
train_writer = tf.summary.FileWriter(LOGDIR)
train_writer.add_graph(sess.graph)

while True:
time.sleep(1000)

0 comments on commit b1f1fb0

Please sign in to comment.