gpt4 book ai didi

python - 在 2D numpy 数组中有效地找到正值的索引范围

转载 作者:太空狗 更新时间:2023-10-30 01:39:02 26 4
gpt4 key购买 nike

我有一个大的 numpy 数组(通常为 500,000x1024,但可以更大),我正在尝试执行几个过程,这取决于数组中正值的位置。一个非常小的示例数组可能是

  [[ 0., 0., 0., 0., 0.,-1.,-1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.],
[ 0., 1., 1., 0., 0., 1., 5., 0., 0.],
[ 0., 1., 1., 0., 0., 0., 1., 0., 0.],
[ 0., 3., 1., 0., 0., 2., 1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.],
[ 0., 1., 0., 0., 0., 1., 1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.]]

第一个是替换每行中相距小于三列的正值之间的任何零。所以如果我用 50 替换这些数字,我的示例输出将是

 [[ 0., 0., 0., 0., 0.,-1.,-1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.],
[ 0., 1., 1.,50.,50., 1., 5., 0., 0.],
[ 0., 1., 1., 0., 0., 0., 1., 0., 0.],
[ 0., 3., 1.,50.,50., 2., 1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.],
[ 0., 1., 0., 0., 0., 1., 1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.]]

我需要做的第二件事是根据正值的范围为每一行写出一些信息。例如,使用我修改后的数组,我需要能够为第三行写出一个语句,为 col[1:7] 声明正整数,为第四行写出两个语句,为 col[1:3] 和 col 声明正整数[6].

我已经设法利用 numpy 向量化方法来完成第一个任务,但最终还是求助于循环遍历列和行(尽管在整个数组的子集上)。否则,我最终会替换给定行中的所有零,而不仅仅是正值之间的零。

但是第二个任务我似乎无法找到一种方法,如果不使用

循环遍历整个数组
for col in arr:
for row in arr:

我想我的总体问题是,有没有一种方法可以利用 numpy 中的向量化方法来定义列索引范围,该范围对于每一行都不同,并且取决于下一列中的值?

如有任何帮助,我们将不胜感激。

最佳答案

不幸的是,Numpy 不能在不生成更多数组的情况下进行太多处理,所以我担心任何解决方案都需要某种形式的手动循环,就像您一直在使用的那样,或者创建一个或多个额外的大数组。您也许可以使用 numexpr 想出一个非常快速且内存高效的解决方案。

这里尝试以一种不一定是内存高效的方式执行此操作,但至少所有循环都将由 Numpy 完成,所以应该比你一直在做的快得多,只要它适合在你的内存中。 (通过将其中一些重写为就地操作可能会提高内存效率,但我不担心。)

这是您的第 1 步:

positive = x>0 # a boolean array marking the positive values in x

positive0 = positive[:,0:-3] # all but last 3 columns
positive1 = positive[:,1:-2] # all but 1st and last 2 columns; not actually used
positive2 = positive[:,2:-1] # all but first 2 and last 1 columns
positive3 = positive[:,3: ] # all but first 3 columns

# In the following, the suffix 1 indicates that we're viewing things from the perspective
# of entries in positive1 above. So, e.g., has_pos_1_to_left1 will be True at
# any position where an entry in positive1 would be preceded by a positive entry in x

has_pos_1_to_left1 = positive0
has_pos_1_or_2_to_right1 = positive2 | positive3
flanked_by_positives1 = has_pos_1_to_left1 & has_pos_1_or_2_to_right1

zeros = (x == 0) # indicates everywhere x is 0
zeros1 = zeros[:,1:-2] # all but 1st and last 2 columns

x1 = x[:,1:-2] # all but 1st and last 2 columns

x1[zeros1 & flanked_by_positives1] = 50 # fill in zeros that were flanked - overwrites x!

# The preceding didn't address the next to last column, b/c we couldn't
# look two slots to the right of it without causing error. Needs special treatment:
x[:,-2][ zeros[:,-2] & positive[:,-1] & (positive[:,-4] or positive[:,-3])] = 50

这是您的第 2 步:

filled_positives = x>0 # assuming we just filled in x
diffs = numpy.diff(filled_positives) # will be 1 at first positive in any sequence,
# -1 after last positive, zero elsewhere

endings = numpy.where(diffs==-1) # tuple specifying coords where positive sequences end
# omits final column!!!
beginnings = numpy.where(diffs==1) # tuple specifying coords where pos seqs about to start
# omits column #0!!!

使用这些开始和结束坐标来提取您说需要的每一行的信息应该很简单,但请记住,这种差异检测方法只能捕捉到从非正到正的转换 ,反之亦然,因此它不会提及从第零列开始或在最后一列结束的正序列,因此如果需要,您需要单独查找这些非转换。

关于python - 在 2D numpy 数组中有效地找到正值的索引范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30918669/

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