You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi WangYue:
Thanks your work,I want ask a question:
scores = torch.matmul(src_embedding.transpose(2, 1).contiguous(), tgt_embedding) / math.sqrt(d_k)
scores = torch.softmax(scores, dim=2)
I want to know what the distance metric of features you use,I think it's like the Attention(Q; K; V ) = softmax(QK' /sqrt(pdk) )V in Attention Is All You Need.
The text was updated successfully, but these errors were encountered:
Hi WangYue:
Thanks your work,I want ask a question:
scores = torch.matmul(src_embedding.transpose(2, 1).contiguous(), tgt_embedding) / math.sqrt(d_k)
scores = torch.softmax(scores, dim=2)
I want to know what the distance metric of features you use,I think it's like the Attention(Q; K; V ) = softmax(QK' /sqrt(pdk) )V in Attention Is All You Need.
The text was updated successfully, but these errors were encountered: