Aliases:
tf.RaggedTensor.__or__tf.logical_ortf.math.logical_or
tf.math.logical_or(
x,
y,
name=None
)
Defined in generated file: tensorflow/python/ops/gen_math_ops.py.
Returns the truth value of x OR y element-wise.
NOTE: math.logical_or supports broadcasting. More about broadcasting
here
Args:
x: ATensorof typebool.y: ATensorof typebool.name: A name for the operation (optional).
Returns:
A Tensor of type bool.