![]() |
Returns the truth value of x OR y element-wise.
Aliases: tf.logical_or
tf.math.logical_or(
x,
y,
name=None
)
NOTE: math.logical_or
supports broadcasting. More about broadcasting
here
Args:
x
: ATensor
of typebool
.y
: ATensor
of typebool
.name
: A name for the operation (optional).
Returns:
A Tensor
of type bool
.