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