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