tf.math.logical_or

Defined in generated file: python/ops/gen_math_ops.py

Returns the truth value of x OR y element-wise.

Aliases:

tf.math.logical_or(
    x,
    y,
    name=None
)

NOTE: math.logical_or supports broadcasting. More about broadcasting here

Args:

  • x: A Tensor of type bool.
  • y: A Tensor of type bool.
  • name: A name for the operation (optional).

Returns:

A Tensor of type bool.