reduce_min

dragon.vm.tensorflow.math.reduce_min(
  input_tensor,
  axis=None,
  keepdims=False,
  name=None
)[source]

Compute the min value of elements along the given axis.

The argument axis could be negative or None:

x = tf.constant([[1, 2, 3], [4, 5, 6]])

# A negative axis is the last-k axis
print(tf.math.reduce_min(x, 1))
print(tf.math.reduce_min(x, -1))  # Equivalent

# If ``axis`` is None, the vector-style reduction
# will be applied to return a scalar result
print(tf.math.reduce_min(x))  # 1
Parameters:
  • input_tensor (dragon.Tensor) The input tensor.
  • axis (int, optional) The axis to reduce.
  • keepdims (bool, optional, default=False) Keep the reduced dimensions or not.
  • name (str, optional) The operation name.
Returns:

dragon.Tensor The output tensor.