在 Python 中实现 argmax
argmax 在 Python 中应该如何实现?它应该尽可能高效,因此它应该与可迭代一起使用。
可以通过三种方式实现:
- 给定一个可迭代的对,返回对应于最大值的键
- 给定一个可迭代的值,返回最大值的索引
- 给定一个可迭代的键和函数
f
,返回f(key) 最大的键
How should argmax be implemented in Python? It should be as efficient as possible, so it should work with iterables.
Three ways it could be implemented:
- given an iterable of pairs return the key corresponding to the greatest value
- given an iterable of values return the index of the greatest value
- given an iterable of keys and a function
f
, return the key with largestf(key)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我修改了我找到的最佳解决方案:
I modified the best solution I found:
下面的代码是一种快速且Pythonic的方式吗?
Is the following code a fast and pythonic way?
或类似地:
or analogously:
我发现这种方式更容易考虑 argmax:假设我们要计算 argmax(f(y)),其中
y
是来自Y
的项目。因此,对于每个y
,我们要计算f(y)
并获得具有最大f(y)
的y
。argmax 的这个定义是通用的,不像“给定一个可迭代的值返回最大值的索引”(恕我直言,这也是很自然的)。
并且 ..drumroll.. Python 允许使用内置的 max 来做到这一点:
所以 argmax_f (来自已接受的答案)是不必要的复杂且低效的恕我直言 - 它是内置
max
的复杂版本。所有其他类似 argmax 的任务此时应该变得清晰:只需定义一个适当的函数f
即可。I found this way easier to think about argmax: say we want to calculate
argmax(f(y))
wherey
is an item fromY
. So for eachy
we want to calculatef(y)
and gety
with maximumf(y)
.This definition of argmax is general, unlike "given an iterable of values return the index of the greatest value" (and it is also quite natural IMHO).
And ..drumroll.. Python allows to do exactly this using a built-in
max
:So
argmax_f
(from the accepted answer) is unnecesary complicated and inefficient IMHO - it is a complicated version of built-inmax
. All other argmax-like tasks should become clear at this point: just define a proper functionf
.基于尼尔的答案,但专门用于采用多个参数的函数。
例如:
Based on Neil's answer, but specialized for functions that take multiple arguments.
For example: