[ torch 参数更多 ]torch.digamma

torch.digamma

torch.digamma(input,
              *,
              out=None)

paddle.digamma

paddle.digamma(x,
               name=None)

PyTorch 相比 Paddle 支持更多其他参数,具体如下:

参数映射

PyTorch PaddlePaddle 备注
input x 表示输入的 Tensor ,仅参数名不一致。
out - 表示输出的 Tensor , Paddle 无此参数,需要转写。

转写示例

out:指定输出

# PyTorch 写法
torch.digamma(torch.tensor([[1, 1.5], [0, -2.2]]), out=y)

# Paddle 写法
paddle.assign(paddle.digamma(paddle.to_tensor([[1, 1.5], [0, -2.2]], dtype='float32')), y)