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

the architecture that gives 64 overall accuracy

parent 67921a24
No related branches found
No related tags found
No related merge requests found
...@@ -174,12 +174,12 @@ class AnswerInference(): ...@@ -174,12 +174,12 @@ class AnswerInference():
self.obj_atr_det_fc_bn = self.fc_bn( self.obj_atr_det_fc_bn = self.fc_bn(
self.obj_atr_det_packed, self.obj_atr_det_packed,
2500, 2500,
'obj_atr_det_conv_bn') 'obj_atr_det_fc_bn')
self.q_a_feat_fc_bn = self.fc_bn( self.q_a_feat_fc_bn = self.fc_bn(
self.q_a_feat_packed, self.q_a_feat_packed,
2500, 2500,
'q_a_feat_conv_bn') 'q_a_feat_fc_bn')
# (25*18 x 2500) # (25*18 x 2500)
self.per_answer_feat = tf.nn.relu( self.per_answer_feat = tf.nn.relu(
......
...@@ -78,10 +78,10 @@ class ObjectAttributeInference(): ...@@ -78,10 +78,10 @@ class ObjectAttributeInference():
out_dim, out_dim,
'fc', 'fc',
func = None) func = None)
# fc2_out = layers.batch_norm( fc2_out = layers.batch_norm(
# fc2_out, fc2_out,
# tf.constant(self.training)) tf.constant(self.training))
# fc2_out = tf.nn.relu(fc2_out) fc2_out = tf.nn.relu(fc2_out)
return fc2_out return fc2_out
...@@ -108,10 +108,10 @@ class ObjectAttributeInference(): ...@@ -108,10 +108,10 @@ class ObjectAttributeInference():
out_dim, out_dim,
'fc', 'fc',
func = None) func = None)
# fc2_out = layers.batch_norm( fc2_out = layers.batch_norm(
# fc2_out, fc2_out,
# tf.constant(self.training)) tf.constant(self.training))
# fc2_out = tf.nn.relu(fc2_out) fc2_out = tf.nn.relu(fc2_out)
return 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