Transformer中PositionalEncoding类的pytorch代码实现如下:
class PositionalEncoding(nn.Module):
"Implement the PE function."
def __init__(self, d_model, dropout, max_len=5000):
super(PositionalEncoding, self).__init__()
self.dropout = nn.Dropout(p=dropout)
# Compute the positional encodings once in log space.
pe = torch.zeros(max_len, d_model)
position = torch.arange(0, max_len).unsqueeze(1)
div_term = torch.exp(torch.arange(0, d_model, 2) *
-(math.log(10000.0) / d_model))
pe[:, 0::2] = torch.sin(position * div_term)
pe[:, 1::2] = torch.cos(position * div_term)
pe = pe.unsqueeze(0)
self.register_buffer('pe', pe)
def forward(self, x):
x = x + Variable(self.pe[:, :x.size(1)],requires_grad=False)
return self.dropout(x)
这里实现了一个正余弦的序列位置编码。序列位置编码可以使用线性函数表示,也可以通过训练学习得到,论文中提出使用正余弦的位置编码可以使模型预测出在训练阶段没有见过的更长的序列长度。
论文原文公式如下:
此处我的疑问是代码中使用了exp和log与公式对应不上,可能是数学功底太差我推到不出来,希望之后能弄明白。