Defined in generated file: python/ops/gen_math_ops.py
Returns the truth value of x OR y element-wise.
Aliases:
tf.RaggedTensor.or
tf.compat.v1.RaggedTensor.or
tf.compat.v1.logical_or
tf.compat.v1.math.logical_or
tf.compat.v2.RaggedTensor.or
tf.compat.v2.logical_or
tf.compat.v2.math.logical_or
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
.