torch.eq¶ torch.eq(input, other, *, out=None) → Tensor¶ 计算逐元素相等性 第二个参数可以是数字或张量,其形状可与第一个参数广播。 参数 input (Tensor) – 要比较的张量 other (Tensor 或 float) – 要比较的张量或值 关键字参数 out (Tensor, 可选) – 输出张量。 返回值 一个布尔张量,在input 等于other 的地方为 True,否则为 False 示例 >>> torch.eq(torch.tensor([[1, 2], [3, 4]]), torch.tensor([[1, 1], [4, 4]])) tensor([[ True, False], [False, True]])