반응형
모델을 fit 한 결과를 그래프로 보여주고자 할 때.
x축을 epoch, y축을 accuracy 또는 loss 로 나타내는 코드.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import matplotlib.pyplot as plt
# Fit the model results = model.fit(X, Y, validation_split=0.33, epochs=150, batch_size=10, verbose=0) # list all data in history print(results.history.keys()) # summarize history for accuracy plt.plot(results.history['acc']) plt.plot(results.history['val_acc']) plt.title('model accuracy') plt.ylabel('accuracy') plt.xlabel('epoch') plt.legend(['train', 'test'], loc='upper left') plt.show() # summarize history for loss plt.plot(results.history['loss']) plt.plot(results.history['val_loss']) plt.title('model loss') plt.ylabel('loss') plt.xlabel('epoch') plt.legend(['train', 'test'], loc='upper left') plt.show() | cs |
반응형
'DeepLearining' 카테고리의 다른 글
텐서플로우의 모델, weight(가중치) 저장하고 불러오기 (0) | 2021.02.24 |
---|---|
옵티마이저 (Optimizer) 종류 - 인공지능, 머신러닝, 데이터마이닝 (0) | 2020.12.10 |
Label Encoding and One Hot Encoding (0) | 2017.10.29 |
딥러닝의 모델 성능 평가2 - manual 로 varification dataset 만들기 (0) | 2017.10.29 |
딥러닝의 모델 성능 평가 1 - Keras의 validation_split 이용하는 방법 (0) | 2017.10.29 |