PyTorch
torch / torch
torch.sub¶
-
torch.
sub
(input, other, *, alpha=1, out=None) → Tensor¶ Subtracts
other
, scaled byalpha
, frominput
.outi=inputi−alpha×otheriSupports broadcasting to a common shape, type promotion, and integer, float, and complex inputs.
- Parameters
- Keyword Arguments
alpha (Scalar) – the scalar multiplier for
other
out (Tensor, optional) – the output tensor.
Example:
>>> a = torch.tensor((1, 2)) >>> b = torch.tensor((0, 1)) >>> torch.sub(a, b, alpha=2) tensor([1, 0])
此页内容是否对您有帮助
感谢反馈!