-
[Machine Learning] 모델 과적합(overfitting) 확인파이썬, Python/[AI] 인공지능 - 머신러닝, ML 2020. 7. 7. 12:01728x90
위 그래프가 과적합 case
해결방법 :
Model.fit 함수 내에 아래 추가
callbacks = [EarlyStopping(monitor = 'val_loss', mode = 'min', verbose = 1, patience = 4)]반응형'파이썬, Python > [AI] 인공지능 - 머신러닝, ML' 카테고리의 다른 글
[Image Detection] YOLO 사용법 (0) 2020.08.08 Keras custom loss 만들기 (0) 2020.08.06 [Machine Learning] Deep Learning for anomaly detection(survey)_1편 (0) 2020.05.30 [Python] 웹크롤링 Tool (0) 2020.04.24 Pipeline (0) 2020.02.04