Function
argmin
(a, axis=None, keepdims=False, split_every=None, out=None)
Source from the content-addressed store, hash-verified
| 945 | |
| 946 | @derived_from(np) |
| 947 | def argmin(a, axis=None, keepdims=False, split_every=None, out=None): |
| 948 | return arg_reduction( |
| 949 | a, |
| 950 | partial(arg_chunk, chunk.min, chunk.argmin), |
| 951 | partial(arg_combine, chunk.argmin), |
| 952 | partial(arg_agg, chunk.argmin), |
| 953 | axis=axis, |
| 954 | keepdims=keepdims, |
| 955 | split_every=split_every, |
| 956 | out=out, |
| 957 | ) |
| 958 | |
| 959 | |
| 960 | @derived_from(np) |
Tested by
no test coverage detected