If I understand it correctly:
torch.pow(torch.exp(seq_nll), 0.005)
would simply imply torch.exp(seq_nll * 0.005)
So, now you can directly use torch.nn.functional.softmax
, with seq_nll * 0.005
as the input.
If I understand it correctly:
torch.pow(torch.exp(seq_nll), 0.005)
would simply imply torch.exp(seq_nll * 0.005)
So, now you can directly use torch.nn.functional.softmax
, with seq_nll * 0.005
as the input.