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