How to disable dropout while prediction in keras?
Keras does this by default. In Keras dropout is disabled in test mode. You can look at the code here and see that they use the dropped input in training and the actual input while testing. As far as I know you have to build your own training function from the layers and specify the … Read more