반응형
Live Loss Plot
keras 학습(fit)과정을 주피터노트북 상에서 그래프로 보여주는 패키지.
https://github.com/stared/livelossplot/blob/master/README.md
딥러닝 모델 학습을 깜깜이로 하지 마시오! 매 이포크(epoch)의 학습과정을 직접 눈으로 확인하라!
케라스, 파이토치 주피터노트북에서 실시간 학습 로쓰그래프.
from livelossplot import PlotLossesKeras
model.fit(X_train, Y_train,
epochs=10,
validation_data=(X_test, Y_test),
callbacks=[PlotLossesKeras()],
verbose=0)
설치
pip install livelossplot
728x90
'프로그래밍 > AI:ML:DL' 카테고리의 다른 글
[NLP] Word2Vec 튜토리얼 - 스킵-그램 모델 (1) | 2018.04.18 |
---|---|
[GENSIM] "You must specify either total_examples or total_words, for proper job parameters updation (0) | 2018.04.03 |
[TensorFlow] tensorflow 1.6.0 No module named '_pywrap_tensorflow_internal' 에러 (1) | 2018.03.22 |
[번역] 이동 중앙값 분해를 통한 비정상 탐지 Dectect Anomaly with Moving Median Decomposition (0) | 2018.03.12 |
[Tensorfow] 초간단 회귀모형 변형 (0) | 2017.05.16 |