gpt4 book ai didi

python - 在 python 中查找大型二维矩阵中的模式的有效方法(Scipy)

转载 作者:行者123 更新时间:2023-12-01 09:17:37 24 4
gpt4 key购买 nike

我正在使用scipy中的stats.mode()来计算800*500矩阵中的众数。执行时间如下:

   `Time taken to execute 0.4359015187888584
Time taken to execute 0.42199154405135975
Time taken to execute 0.4250416821138656
Time taken to execute 0.4100701556064723
Time taken to execute 0.4371956395342953`

但我需要它:

 Excution time 0.09193338154885265

有什么方法可以提高效率吗?

最佳答案

我不知道为什么scipy.stats.mode这么慢。无论如何,您可以使用 np.bincount 获得更快的结果:

# create random frame
>>> a = np.random.randint(0, 256, (800, 500)).astype(np.int8)
>>>
# add row offsets to make bincount create separate bins for each row
>>> counts = np.bincount((a.view(np.uint8) + 256 * np.arange(800)[:, None]).ravel(), minlength=256*800).reshape(800, 256)
# find the mode
>>> values = np.argmax(counts, axis=1)
# discard the counts for all other values
>>> counts = counts[np.arange(800), values]
# convert modes back to original dtype
>>> values = values.astype(np.uint8).view(np.int8)

关于python - 在 python 中查找大型二维矩阵中的模式的有效方法(Scipy),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51095585/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com