shlogg · Early preview
Super Kai (Kazuya Ito) @superkai_kazuya

Understanding Logical XOR In PyTorch

logical_xor() and logical_not() functions explained in PyTorch. Perform XOR operation on tensors with logical_xor(). Negate boolean values with logical_not().

Buy Me a Coffee☕
*My post explains logical_and() and logical_or().
logical_xor() can do logical XOR with two of the 0D or more D tensors of zero or more elements, getting the 0D or more D tensor of zero or more boolean values as shown below:
*Memos:

logical_xor() can be used with torch or a tensor.
The 1st argument(input) with torch or using a tensor(Required-Type:tensor of int, float, complex or bool).
The 2nd argument with torch or the 1st argument with a tensor is other(Required-Type:tensor of int, float, complex or bool).
There is out argument with torch(Optional-Default:None-Type:tensor...