torch.ne¶ torch.ne(input, other, *, out=None) → Tensor¶ 按元素计算 input≠other\text{input} \neq \text{other}input=other。 第二个参数可以是一个数字或一个张量,其形状与第一个参数可广播。 参数 input (张量) – 要比较的张量 other (张量 或 浮点数) – 要比较的张量或值 关键字参数 out (张量, 可选) – 输出张量。 返回值 一个布尔张量,其中 input 不等于 other 的位置为 True,其他位置为 False 示例 >>> torch.ne(torch.tensor([[1, 2], [3, 4]]), torch.tensor([[1, 1], [4, 4]])) tensor([[False, True], [True, False]])