tf.math.minimum

Returns the min of x and y (i.e. x < y ? x : y) element-wise.

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

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

Args:

Returns:

A Tensor. Has the same type as x.