aice 선호장르 6


aice 선호장르 6

13. 고객의 미디어 선호장르를 분류하는 딥러닝 모델을 만들려고 합니다. 아래 가이드에 따라 모델링하고 학습을 진행하세요. Tensorflow framework를 사용하여 딥러닝 모델을 만드세요. 히든레이어(hidden layer) 3개이상으로 모델을 구성하고 과적합 방지하는 dropout을 설정하세요. EarlyStopping 콜백으로 정해진 epoch 동안 모니터링 지표가 향상되지 않을 때 훈련을 중지하도록 설정하세요.(monitoring 지표 : val_acc) ModelCheckpoint 콜백으로 validation performance가 좋은 모델을 best_model.h5 파일로 저장하세요. # 여기에 답안코드를 작성하세요. import tensorflow as tf from tensorflow.keras.models import Sequential from tensorflow.keras.layers import Dense, Activation, Dropout from t...



원문링크 : aice 선호장르 6