[ 仅参数名不一致 ]torch.Tensor.igamma¶
torch.Tensor.igamma¶
torch.Tensor.igamma(other)
参数映射¶
PyTorch | PaddlePaddle | 备注 |
---|---|---|
other | y | 正参数 Tensor,仅参数名不同 |
转写示例¶
# PyTorch 写法
out = x.igamma(y)
# Paddle 写法
out = x.gammainc(y)
torch.Tensor.igamma(other)
PyTorch | PaddlePaddle | 备注 |
---|---|---|
other | y | 正参数 Tensor,仅参数名不同 |
# PyTorch 写法
out = x.igamma(y)
# Paddle 写法
out = x.gammainc(y)