tf.keras.utils.model_to_dot
Stay organized with collections
Save and categorize content based on your preferences.
Convert a Keras model to dot format.
tf.keras.utils.model_to_dot(
model, show_shapes=False, show_layer_names=True, rankdir='TB',
expand_nested=False, dpi=96, subgraph=False
)
Arguments |
model
|
A Keras model instance.
|
show_shapes
|
whether to display shape information.
|
show_layer_names
|
whether to display layer names.
|
rankdir
|
rankdir argument passed to PyDot,
a string specifying the format of the plot:
'TB' creates a vertical plot;
'LR' creates a horizontal plot.
|
expand_nested
|
whether to expand nested models into clusters.
|
dpi
|
Dots per inch.
|
subgraph
|
whether to return a pydot.Cluster instance.
|
Returns |
A pydot.Dot instance representing the Keras model or
a pydot.Cluster instance representing nested model if
subgraph=True .
|
Raises |
ImportError
|
if graphviz or pydot are not available.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[]]