Compare
Performs a comparison between the two inputs.
The available comparison functions are:
- And
- Or
- Xor
- Equals
- Greater than
- Greater than or equal
- Less than
- Less than or equal
Strings are interpreted as the boolean value false if the string is empty, and true otherwise. When comparing booleans using greater/less than, a value of true is interpretted as a 1 and false as 0. When comparing numbers using And, Or or Equals, a value of 0 is interpretted as false and all other values as 1.
The two inputs must have the same data type. They must also have the same shape, or be broadcastable to a common shape. The output data type will be Boolean, with the same shape as the input, or as the common shape that was broadcasted to. Because boolean tensors do not track gradients, any gradients in the input are lost in the output.