[torch 参数更多 ]torch.subtract¶
torch.subtract¶
torch.subtract(input,
other,
*,
alpha=1,
out=None)
参数映射¶
PyTorch | PaddlePaddle | 备注 |
---|---|---|
input | x | 表示被减数的 Tensor,仅参数名不一致。 |
other | y | 表示减数的 Tensor,仅参数名不一致。 |
alpha | - | 表示other 的乘数,Paddle 无此参数。Paddle 应设置 y = alpha * other。 |
out | - | 表示输出的 Tensor,Paddle 无此参数。 |