torch.Tensor.add¶
- Tensor.add(other, *, alpha=1) Tensor ¶
将标量或张量添加到
self
张量。如果同时指定了alpha
和other
,则在使用之前,other
的每个元素都将按alpha
进行缩放。当
other
是一个张量时,other
的形状必须与底层张量的形状 可广播。参见
torch.add()
将标量或张量添加到 self
张量。如果同时指定了 alpha
和 other
,则在使用之前,other
的每个元素都将按 alpha
进行缩放。
当 other
是一个张量时,other
的形状必须与底层张量的形状 可广播。
参见 torch.add()