MCPcopy
hub / github.com/dask/dask / argmax

Function argmax

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

Source from the content-addressed store, hash-verified

934
935@derived_from(np)
936def argmax(a, axis=None, keepdims=False, split_every=None, out=None):
937 return arg_reduction(
938 a,
939 partial(arg_chunk, chunk.max, chunk.argmax),
940 partial(arg_combine, chunk.argmax),
941 partial(arg_agg, chunk.argmax),
942 axis=axis,
943 keepdims=keepdims,
944 split_every=split_every,
945 out=out,
946 )
947
948
949@derived_from(np)

Callers 1

argmaxMethod · 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…