标签: tensorflow attention-model
现在,我必须构建一个多模式注意力模型,因此我需要从注意力模型中获取加权总和。我想问一下如何在tensorflow中获得它?
在纸上总是显示为C=sum(alpha*h)。
C=sum(alpha*h)
这是我使用的机制:
attention_mechanisma = tf.contrib.seq2seq.BahdanauMonotonicAttention(self.cell_size, self.l_in_ya)