mxnet.ndarray.argmin¶
-
mxnet.ndarray.
argmin
(data=None, axis=_Null, keepdims=_Null, out=None, name=None, **kwargs)¶ Returns indices of the minimum values along an axis.
In the case of multiple occurrences of minimum values, the indices corresponding to the first occurrence are returned.
Examples:
x = [[ 0., 1., 2.], [ 3., 4., 5.]] // argmin along axis 0 argmin(x, axis=0) = [ 0., 0., 0.] // argmin along axis 1 argmin(x, axis=1) = [ 0., 0.] // argmin along axis 1 keeping same dims as an input array argmin(x, axis=1, keepdims=True) = [[ 0.], [ 0.]]
Defined in src/operator/tensor/broadcast_reduce_op_index.cc:L77
- Parameters
data (NDArray) – The input
axis (int or None, optional, default='None') – The axis along which to perform the reduction. Negative values means indexing from right to left.
Requires axis to be set as int, because global reduction is not supported yet.
keepdims (boolean, optional, default=0) – If this is set to True, the reduced axis is left in the result as dimension with size one.
out (NDArray, optional) – The output NDArray to hold the result.
- Returns
out – The output of this function.
- Return type
NDArray or list of NDArrays