📝딥러닝 에포크 히스토리를 차트로 보기
# 학습시킬때 변수에 저장하여 학습시킨다
epochs_history = model.fit(X_train, y_train, batch_size= 10, epochs= 100)
# 저장된 변수의 히스토리는 딕트로 나온다
epochs_history.history
# 차트로 나타내기 (위에서 확인한 history의 키값 입력)
plt.plot(np.arange(1, 100+1), epochs_history.history['loss'])
plt.xlabel('# epochs')
plt.ylabel('Loss')
plt.show()
'인공지능 > Deep Learning' 카테고리의 다른 글
[Deep Learning] 학습중에 평가하기 validation (0) | 2022.12.28 |
---|---|
[Deep Learning] TensorFlow optimizer learning rate 셋팅 (0) | 2022.12.28 |
[Deep Learning] DNN TensorFlow Regression 수치예측 문제 모델링 (1) | 2022.12.28 |
[Deep Learning] TensorFlow GridSearch (0) | 2022.12.27 |
[Deep Learning] Dummy variable trap (0) | 2022.12.27 |
댓글