Submitted by fullgoopy_alchemist t3_11po6qw in MachineLearning
I'm trying to express something in mathematical notation - let's say I want to get the top k indices for which a function obtains highest values. So, something like argmax, but for a general k number of indices instead of just the top index. Is there a standard notation for this?
Illustrious-Bar5621 t1_jbyxpbh wrote
Could just do something like
$ \argmax_{I \subset [n]: |I| = k } \sum_{i \in I} f(i) $ , where $ [n] = \{1,2,\ldots, n\} $.