openvino.runtime.opset11.less#
- openvino.runtime.opset11.less(left_node: Node | int | float | ndarray, right_node: Node | int | float | ndarray, auto_broadcast: str = 'NUMPY', name: str | None = None) Node #
Return node which checks if left input node is less than the right node element-wise.
- Parameters:
left_node – The first input node providing data.
right_node – The second input node providing data.
auto_broadcast – The type of broadcasting specifies rules used for auto-broadcasting of input tensors.
name – The optional new name for output node.
- Returns:
The node performing element-wise check whether left_node is less than the right_node.