W3cubDocs

/TensorFlow

tf.keras.utils.model_to_dot

Convert a Keras model to dot format.

Args
model A Keras model instance.
show_shapes whether to display shape information.
show_dtype whether to display layer dtypes.
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 Functional models into clusters.
dpi Image resolution in dots per inch.
subgraph whether to return a pydot.Cluster instance.
show_layer_activations Display layer activations (only for layers that have an activation property).
show_trainable whether to display if a layer is trainable.
Returns
A pydot.Dot instance representing the Keras model or a pydot.Cluster instance representing nested model if subgraph=True.

© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/keras/utils/model_to_dot