Implement a function that generates the sinusoidal positional encodings given the sequence length and the embedding dimension in PyTorch.
{
"input": "sequence_length=10, embedding_dim=16",
"output": "A torch.Tensor of shape (10, 16) containing the sinusoidal positional encodings."
}
{
"input": "sequence_length=1, embedding_dim=8",
"output": "A torch.Tensor of shape (1, 8) containing the sinusoidal positional encodings."
}
use python data or natural language description