import torchimport torch.nn as nninput = torch.randn(3, 3)#print(input)sm = nn.Softmax(dim=1)sl = nn.LogSoftmax(dim=1)#print(sm(input))test1 = torch.l
posted on 2021-04-27 09:46  Sleven  阅读(58)  评论(0编辑  收藏  举报