Hi there,
Thanks for sharing the code. For attention part in model.py, your code is:
attentionSoft_b = tf.nn.softmax(tf.transpose(attentionWeights))
attentionSoft_b = tf.transpose(attentionSoft_b)
while I feel like it should be:
attentionSoft_b = tf.nn.softmax(attentionWeights, axis=1)
or you should indicate the "perm" in transpose function.
Please correct me if I'm wrong, thanks!
Hi there,
Thanks for sharing the code. For attention part in model.py, your code is:
while I feel like it should be:
attentionSoft_b = tf.nn.softmax(attentionWeights, axis=1)or you should indicate the "perm" in transpose function.
Please correct me if I'm wrong, thanks!