chainer.functions.min

chainer.functions.min(x, axis=None, keepdims=False)[source]

Minimum of array elements over a given axis.

Parameters
  • x (Variable or N-dimensional array) – Array to be minimized.

  • axis (None, int, or tuple of int) – Axis over which a min is performed. The default (axis = None) is perform a min over all the dimensions of the input array.

Returns

Output variable.

Return type

Variable