本文简要介绍python语言中 torch.add
的用法。
用法:
torch.add(input, other, *, alpha=1, out=None) → Tensor
alpha(数字) -
other
的乘数。out(Tensor,可选的) -输出张量。
将由
alpha
缩放的other
添加到input
。支持广播到通用形状、类型提升以及整数、浮点数和复杂输入。
例子:
>>> a = torch.randn(4) >>> a tensor([ 0.0202, 1.0985, 1.3506, -0.6056]) >>> torch.add(a, 20) tensor([ 20.0202, 21.0985, 21.3506, 19.3944]) >>> b = torch.randn(4) >>> b tensor([-0.9732, -0.3497, 0.6245, 0.4022]) >>> c = torch.randn(4, 1) >>> c tensor([[ 0.3743], [-1.7724], [-0.5811], [-0.8017]]) >>> torch.add(b, c, alpha=10) tensor([[ 2.7695, 3.3930, 4.3672, 4.1450], [-18.6971, -18.0736, -17.0994, -17.3216], [ -6.7845, -6.1610, -5.1868, -5.4090], [ -8.9902, -8.3667, -7.3925, -7.6147]])
参数:
关键字参数:
相关用法
- Python PyTorch addmm用法及代码示例
- Python PyTorch addmv用法及代码示例
- Python PyTorch addcdiv用法及代码示例
- Python PyTorch addbmm用法及代码示例
- Python PyTorch addr用法及代码示例
- Python PyTorch addcmul用法及代码示例
- Python PyTorch argsort用法及代码示例
- Python PyTorch apply_effects_tensor用法及代码示例
- Python PyTorch assert_close用法及代码示例
- Python PyTorch angle用法及代码示例
- Python PyTorch all_reduce用法及代码示例
- Python PyTorch atanh用法及代码示例
- Python PyTorch annotate用法及代码示例
- Python PyTorch async_execution用法及代码示例
- Python PyTorch argmax用法及代码示例
- Python PyTorch atan用法及代码示例
- Python PyTorch as_strided用法及代码示例
- Python PyTorch acos用法及代码示例
- Python PyTorch all_gather用法及代码示例
- Python PyTorch avg_pool1d用法及代码示例
- Python PyTorch asin用法及代码示例
- Python PyTorch allreduce_hook用法及代码示例
- Python PyTorch argmin用法及代码示例
- Python PyTorch any用法及代码示例
- Python PyTorch all_to_all用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.add。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。