I am using dropout in neural network model in keras. Little bit code is like
model.add(Dropout(0.5))
model.add(Dense(classes))
For testing, I am using preds = model_1.predict_proba(image)
.
But while testing Dropout is also participating to predict the score which should not be happen. I search a lot to disable the dropout but didn't get any hint yet.
Do anyone have solution to disable the Dropout while testing in keras??
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…