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??