Skip to content

Instantly share code, notes, and snippets.

@CS-savvy
Last active March 18, 2019 01:07
Show Gist options
  • Save CS-savvy/f8aa4db9e7b7a681402dbad1981ae19e to your computer and use it in GitHub Desktop.
Save CS-savvy/f8aa4db9e7b7a681402dbad1981ae19e to your computer and use it in GitHub Desktop.
Visualizing Keras Tensorflow graph directly in Jupyter Notebook
''' You just need to copy this code to jupyter Notebook '''
from IPython.display import clear_output, Image, display, HTML
def strip_consts(graph_def, max_const_size=32):
"""Strip large constant values from graph_def."""
strip_def = tf.GraphDef()
for n0 in graph_def.node:
n = strip_def.node.add()
n.MergeFrom(n0)
if n.op == 'Const':
tensor = n.attr['value'].tensor
size = len(tensor.tensor_content)
if size > max_const_size:
tensor.tensor_content = "<stripped %d bytes>"%size
return strip_def
def show_graph(graph_def, max_const_size=32):
"""Visualize TensorFlow graph."""
if hasattr(graph_def, 'as_graph_def'):
graph_def = graph_def.as_graph_def()
strip_def = strip_consts(graph_def, max_const_size=max_const_size)
code = """
<script>
function load() {{
document.getElementById("{id}").pbtxt = {data};
}}
</script>
<link rel="import" href="https://tensorboard.appspot.com/tf-graph-basic.build.html" onload=load()>
<div style="height:600px">
<tf-graph-basic id="{id}"></tf-graph-basic>
</div>
""".format(data=repr(str(strip_def)), id='graph'+str(np.random.rand()))
iframe = """
<iframe seamless style="width:1200px;height:620px;border:0" srcdoc="{}"></iframe>
""".format(code.replace('"', '&quot;'))
display(HTML(iframe))
graph = tf.get_default_graph() # you can also replace it with keras.backend graph
main_graph_def = graph.as_graph_def()
show_graph(main_graph_def)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment