SVHNClassifier icon indicating copy to clipboard operation
SVHNClassifier copied to clipboard

issue about model.py/dropout = tf.layers.dropout(pool, rate=drop_rate)

Open YanShuang17 opened this issue 7 years ago • 0 comments

Hello, when i train the model with my own dataset, i found the statement: dropout = tf.layers.dropout(pool, rate=drop_rate) in model.py may be have problem. The operation: tf.layers.dropout() in TensorFlow's document has an argument of training, and training=False by default, in your code, you didn't set the training argument, so, although you set the rate value, the model won't conduct the dropout operation???

YanShuang17 avatar May 27 '18 13:05 YanShuang17