快捷方式

torch.neg

torch.neg(input, *, out=None) Tensor

返回一个新张量,其中包含 input 元素的负数。

out=1×input\text{out} = -1 \times \text{input}
参数

input (Tensor) – 输入张量。

关键字参数

out (Tensor, 可选) – 输出张量。

示例

>>> a = torch.randn(5)
>>> a
tensor([ 0.0090, -0.2262, -0.0682, -0.2866,  0.3940])
>>> torch.neg(a)
tensor([-0.0090,  0.2262,  0.0682,  0.2866, -0.3940])

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取针对初学者和高级开发人员的深入教程

查看教程

资源

查找开发资源并获取问题的解答

查看资源