tf.keras.utils.model_to_dot

Convert a Keras model to dot format.

Compat aliases for migration

See Migration guide for more details.

tf.compat.v1.keras.utils.model_to_dot, `tf.compat.v2.keras.utils.model_to_dot`

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.

A pydot.Dot instance representing the Keras model or a pydot.Cluster instance representing nested model if subgraph=True.

ImportError if graphviz or pydot are not available.