모델 그리기
모델을 요약해서 확인하는 것 외에도, 모델을 그림으로 그려 직관적으로 파악할 수도 있어요.
워크스페이스에 model 이 준비되어 있어요.
이 연습은 강의의 일부입니다
Keras로 배우는 Advanced Deep Learning
실습형 인터랙티브 연습
이 예제를 이 샘플 코드를 완성하여 풀어보세요.
# Imports
import matplotlib.pyplot as plt
from tensorflow.keras.utils import plot_model
# Plot the model
____(____, to_file=____)
# Display the image
data = ____
____
plt.show()