(a, axis=None, keepdims=False, split_every=None, out=None)
| 934 | |
| 935 | @derived_from(np) |
| 936 | def 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) |
no test coverage detected
searching dependent graphs…