-
Notifications
You must be signed in to change notification settings - Fork 535
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add code to visualize tensorfolow models in tensorboard.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |