我想沿着特定的轴交错多个具有不同尺寸的numpy数组。特别是,我有一个形状为(_, *dims)
的数组的列表,它们沿第一轴变化,我想对其进行交织以获得另一个形状为(_, *dims)
的数组。例如,给定输入
a1 = np.array([[11,12], [41,42]])
a2 = np.array([[21,22], [51,52], [71,72], [91,92], [101,102]])
a3 = np.array([[31,32], [61,62], [81,82]])
interweave(a1,a2,a3)
所需的输出将是
np.array([[11,12], [21,22], [31,32], [41,42], [51,52], [61,62], [71,72], [81,82], [91,92], [101,102]]
在先前的文章(例如Numpy concatenate arrays with interleaving)的帮助下,当数组沿第一个维度匹配时,我已经开始工作了:
import numpy as np
def interweave(*arrays, stack_axis=0, weave_axis=1):
final_shape = list(arrays[0].shape)
final_shape[stack_axis] = -1
# stack up arrays along the "weave axis", then reshape back to desired shape
return np.concatenate(arrays, axis=weave_axis).reshape(final_shape)
不幸的是,如果输入形状沿第一维不匹配,则上面的方法会引发异常,因为我们必须沿着与不匹配的轴不同的轴进行连接。确实,我在这里看不到任何有效使用串联的方法,因为沿着不匹配的轴进行串联会破坏我们需要产生所需输出的信息。
我的另一个想法是用空条目填充输入数组,直到它们的形状沿第一个维度匹配,然后在一天结束时删除空条目。虽然这行得通,但我不确定如何最好地实现它,而且似乎一开始就没有必要。
答案 0 :(得分:3)
这是一种主要基于NumPy
的方法,也使用zip_longest
来使数组与填充值交织:
def interleave(*a):
# zip_longest filling values with as many NaNs as
# values in second axis
l = *zip_longest(*a, fillvalue=[np.nan]*a[0].shape[1]),
# build a 2d array from the list
out = np.concatenate(l)
# return non-NaN values
return out[~np.isnan(out[:,0])]
a1 = np.array([[11,12], [41,42]])
a2 = np.array([[21,22], [51,52], [71,72], [91,92], [101,102]])
a3 = np.array([[31,32], [61,62], [81,82]])
interleave(a1,a2,a3)
array([[ 11., 12.],
[ 21., 22.],
[ 31., 32.],
[ 41., 42.],
[ 51., 52.],
[ 61., 62.],
[ 71., 72.],
[ 81., 82.],
[ 91., 92.],
[101., 102.]])
答案 1 :(得分:2)
您可能正在寻找np.choose
。使用正确构造的索引,您可以一次调用即可得出结果:
def interweave(*arrays, axis=0):
arrays = [np.moveaxis(a, axis, 0) for a in arrays]
m = len(arrays)
n = max(map(len, arrays))
index = [k for i, k in (divmod(x, m) for x in range(m * n)) if i < len(arrays[k])]
return np.moveaxis(np.choose(index, arrays), 0, axis)
range(m * n)
是所有数组的大小均相同时输出空间的大小。 divmod
计算交织元素和从中选择交织的数组。由于数组太短而丢失的元素将被跳过,因此结果仅从数组中选择有效的元素。
也许有更好的方法来建立索引,但这只是一个例子。由于choose
沿着第一个轴,因此您必须move到第一个位置。
答案 2 :(得分:0)
我继续介绍了yatu对我在实践中遇到的情况的回答,其中维度的数量是任意的。这是我所拥有的:
import numpy as np
from itertools import zip_longest
def interleave(*a):
#creating padding array of NaNs
fill_shape = a[0].shape[1:]
fill_array = np.full(fill_shape,np.nan)
l = *zip_longest(*a, fillvalue=fill_array),
# build a 2d array from the list
out = np.concatenate(l)
# return non-NaN values
tup = (0,)*(len(out.shape)-1)
return out[~np.isnan(out[(...,)+tup])]
对此进行测试:
b1 = np.array(
[
[[111,112,113],[121,122,123]],
[[411,412,413],[421,422,423]]
])
b2=np.array(
[
[[211,212,213],[221,222,223]],
[[511,512,513],[521,522,523]],
[[711,712,713],[721,722,712]],
[[911,912,913],[921,922,923]],
[[1011,1012,1013],[1021,1022,1023]]
])
b3=np.array(
[
[[311,312,313],[321,322,323]],
[[611,612,613],[621,622,623]],
[[811,812,813],[821,822,823]]
])
In [1]: interleave(b1,b2,b3)
Out [1]: [[[ 111. 112. 113.]
[ 121. 122. 123.]]
[[ 211. 212. 213.]
[ 221. 222. 223.]]
[[ 311. 312. 313.]
[ 321. 322. 323.]]
[[ 411. 412. 413.]
[ 421. 422. 423.]]
[[ 511. 512. 513.]
[ 521. 522. 523.]]
[[ 611. 612. 613.]
[ 621. 622. 623.]]
[[ 711. 712. 713.]
[ 721. 722. 712.]]
[[ 811. 812. 813.]
[ 821. 822. 823.]]
[[ 911. 912. 913.]
[ 921. 922. 923.]]
[[1011. 1012. 1013.]
[1021. 1022. 1023.]]]
欢迎提出任何建议!特别是,在我的应用程序中,空间而不是时间是限制因素,所以我想知道是否有一种方法可以使用显着更少的内存(数据集沿合并轴很大)来做到这一点。