Skip to content

Commit

Permalink
final commit for ICLR
Browse files Browse the repository at this point in the history
  • Loading branch information
seominjoon committed Nov 5, 2016
1 parent 92bed3b commit d21df71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions basic/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ def bi_attention(config, is_train, h, u, h_mask=None, u_mask=None, scope=None, t
a_h = tf.nn.softmax(tf.reduce_max(u_logits, 3))
tensor_dict['a_u'] = a_u
tensor_dict['a_h'] = a_h
variables = tf.get_collection(tf.GraphKeys.VARIABLES, scope=tf.get_variable_scope().name)
for var in variables:
tensor_dict[var.name] = var

return u_a, h_a

Expand Down
Empty file removed basic_cnn/combiner.py
Empty file.

0 comments on commit d21df71

Please sign in to comment.