Plotting models
In addition to summarizing your model, you can also plot your model to get a more intuitive sense of it.
Your model
is available in the workspace.
This exercise is part of the course
Advanced Deep Learning with Keras
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Imports
import matplotlib.pyplot as plt
from tensorflow.keras.utils import plot_model
# Plot the model
____(____, to_file=____)
# Display the image
data = ____
____
plt.show()