预告双胞胎真容?谢娜晒童年照撞脸张杰
百度 警方将其带走,在次日早七点,弗朗西斯被释放。
Converts a Keras model to dot format and save to a file.
tf.keras.utils.plot_model(
model,
to_file='model.png',
show_shapes=False,
show_dtype=False,
show_layer_names=False,
rankdir='TB',
expand_nested=False,
dpi=200,
show_layer_activations=False,
show_trainable=False,
**kwargs
)
Used in the notebooks
Example:
inputs = ...
outputs = ...
model = keras.Model(inputs=inputs, outputs=outputs)
dot_img_file = '/tmp/model_1.png'
keras.utils.plot_model(model, to_file=dot_img_file, show_shapes=True)
Args |
model
|
A Keras model instance
|
to_file
|
File name of the plot image.
|
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.
|
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 Jupyter notebook Image object if Jupyter is installed.
This enables in-line display of the model plots in notebooks.
|
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. Some content is licensed under the numpy license.
Last updated 2025-08-07 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 2025-08-07 UTC."],[],[]]