-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Labels
Description
In machine learning (classification) use cases, one typically need an operation like argmax or argmin. It's currently not very obvious/discoverable how to do that in pure openEO processes.
There are a couple of options however, e.g. for argmax:
- based on
order:first(order(array, asc=false)) - based on
array_find:array_find(array, value=max(array))
Possible options to improve the situation:
- simple: just improve docs, e.g. from
maxandmindocs: link toorder/array_findhow these can be used to emulate argmax/armgin - more work: add argmax/argmin processes