Spaces:
Running
Running
File size: 395 Bytes
426ffb5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import torch.nn as nn
import torch
import math
class PositionalEmbedding(nn.Module):
def __init__(self, max_len, d_model):
super().__init__()
# Compute the positional encodings once in log space.
self.pe = nn.Embedding(max_len, d_model)
def forward(self, x):
batch_size = x.size(0)
return self.pe.weight.unsqueeze(0).repeat(batch_size, 1, 1)
|