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