[ torch 参数更多 ]torch.softmax¶
torch.softmax¶
torch.softmax(input, dim, *, dtype=None, out=None)
paddle.nn.functional.softmax¶
paddle.nn.functional.softmax(x, axis=-1, dtype=None, name=None)
PyTorch 相比 Paddle 支持更多其他参数,具体如下:
参数映射¶
PyTorch | PaddlePaddle | 备注 |
---|---|---|
input | x | 表示输入张量,仅参数名不一致。 |
dim | axis | 表示对输入 Tensor 进行运算的轴,仅参数名不一致。 |
dtype | dtype | 表示返回张量所需的数据类型。 |
out | - | 表示输出的 Tensor ,Paddle 无此参数,需要转写。 |