Pytorch Torch Less_Equal
# PyTorch torch.less_equal Function
* * Pytorch torch Reference Manual](#)
`torch.less_equal` is a function in PyTorch used for element-wise less than or equal comparison. It returns a tensor with True where the elements of the first tensor are less than or equal to the elements of the second tensor.
### Function Definition
torch.less_equal(input, other)
* * *
## Usage Example
## Example
import torch
# Create two tensors
x = torch.tensor([3,5,2])
y = torch.tensor([2,4,2])
# Element-wise Less Than or Equal To Comparison
result = torch.less_equal(x, y)
print(result)
The output result is:
tensor([False, False, True])
* * Pytorch torch Reference Manual](#)
YouTip