본문 바로가기
인공지능/Deep Learning

[Deep Learning] epochs history 차트

by coding_su 2022. 12. 28.

📝딥러닝 에포크 히스토리를 차트로 보기

# 학습시킬때 변수에 저장하여 학습시킨다
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()

댓글