MCPcopy
hub / github.com/dask/dask / argmin

Function argmin

dask/array/reductions.py:950–960  ·  view source on GitHub ↗
(a, axis=None, keepdims=False, split_every=None, out=None)

Source from the content-addressed store, hash-verified

948
949@derived_from(np)
950def argmin(a, axis=None, keepdims=False, split_every=None, out=None):
951 return arg_reduction(
952 a,
953 partial(arg_chunk, chunk.min, chunk.argmin),
954 partial(arg_combine, chunk.argmin),
955 partial(arg_agg, chunk.argmin),
956 axis=axis,
957 keepdims=keepdims,
958 split_every=split_every,
959 out=out,
960 )
961
962
963@derived_from(np)

Callers 1

argminMethod · 0.90

Calls 1

arg_reductionFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…