이 모델은 아홉 번째 에포크 이후에 과대적합이 시작됩니다. 아홉 번의 에포크로 새로운 모델을 훈련하고 테스트 세트에서 평가하겠습니다.
코드 4-21 모델을 처음부터 다시 훈련하기
64, ="relu"),
layers.Dense(64, ="relu"),
layers.Dense(46, ="softmax")
])
.compile( ="rmsprop",
="categorical_crossentropy",
=["accuracy"])
.fit(x_train,
y_train,
=9,
=512)
= .evaluate(x_test, y_test)
= keras.Sequential([
layers.Dense(최종 결과는 다음과 같습니다.
>>> results [0.9565213431445807, 0.79697239536954589]