Skip to content
Snippets Groups Projects
Commit 67921a24 authored by tgupta6's avatar tgupta6
Browse files

remove obj atr last fc layer bn and relu

parent 78c53ec5
No related branches found
No related tags found
No related merge requests found
......@@ -78,10 +78,10 @@ class ObjectAttributeInference():
out_dim,
'fc',
func = None)
fc2_out = layers.batch_norm(
fc2_out,
tf.constant(self.training))
fc2_out = tf.nn.relu(fc2_out)
# fc2_out = layers.batch_norm(
# fc2_out,
# tf.constant(self.training))
# fc2_out = tf.nn.relu(fc2_out)
return fc2_out
......@@ -108,10 +108,10 @@ class ObjectAttributeInference():
out_dim,
'fc',
func = None)
fc2_out = layers.batch_norm(
fc2_out,
tf.constant(self.training))
fc2_out = tf.nn.relu(fc2_out)
# fc2_out = layers.batch_norm(
# fc2_out,
# tf.constant(self.training))
# fc2_out = tf.nn.relu(fc2_out)
return fc2_out
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment