코드 4-20 훈련과 검증 정확도 그리기
plt.clf() ----- 그래프를 초기화합니다.
"accuracy"]
= history.history["val_accuracy"]
plt.plot(epochs, , "bo", ="Training accuracy")
plt.plot(epochs, , "b", ="Validation accuracy")
plt.title("Training and validation accuracy")
plt.xlabel("Epochs")
plt.ylabel("Accuracy")
plt.legend()
plt.show()
= history.history[▲ 그림 4-7 훈련과 검증 정확도