Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

@dkurt, Thanks for fast response. I was using tf.nn.dropout and now I see... tf.nn.dropout is not adding information about is_training thus freezing is not removing it and it slips through to deployed model. So when I do graph_freeze -> optimize_for_inference -> (if necessary graph_transform) it is working now. Thanks! You are doing great job.

@dkurt, Thanks for fast response. I was using tf.nn.dropout and now I see... tf.nn.dropout is not adding information about is_training thus freezing is not removing it and it slips through to deployed model. So when I've changed it to tf.layers.dropout and than I do graph_freeze -> optimize_for_inference -> (if necessary graph_transform) it is working now. Thanks! You are doing great job.

@dkurt, Thanks for fast response. I was using tf.nn.dropout and now I see... tf.nn.dropout is not adding information about is_training thus freezing is not removing it and it slips through to deployed model. So when I've changed it to tf.layers.dropout and than then I do graph_freeze -> optimize_for_inference -> (if necessary graph_transform) it is working now. Thanks! You are doing a great job.