I have build a TensorFlow model that works with training and test batches provided by Input Queues. Thus, I am not explicitly feeding data for training using the standard feed_dict. Nevertheless, I need to implement dropout which requires a keep_prob placeholder to turn off dropout during testing.
I can't find how to solve this without a separate model. Are there any suggestions?
Thanks
Let's say that your tensor layer1 is defined as follows:
to apply dropout, you just do
where your
keep_prob
is defined somewhere, and I usually control it with FLAGS but you can use a normal declaration from inside the program. Then you can usedropout_layer1
as a normal tensor. Here you have a trivial example about using it:This is a bad example from the regression point of view but it shows how to program dropout and it easily inferes about what dropout does. I hope you will enjoy it :)