【问题标题】:padding numpy rolling window operations using strides使用步幅填充 numpy 滚动窗口操作
【发布时间】:2018-05-05 04:07:30
【问题描述】:

我有一个函数 f,我想在滑动窗口中高效地计算它。

def efficient_f(x):
   # do stuff
   wSize=50
   return another_f(rolling_window_using_strides(x, wSize), -1)

我在 SO 上看到使用 strides 特别有效: 从 numpy.lib.stride_tricks 导入 as_strided

def rolling_window_using_strides(a, window):
    shape = a.shape[:-1] + (a.shape[-1] - window + 1, window)
    strides = a.strides + (a.strides[-1],)
    print np.lib.stride_tricks.as_strided(a, shape=shape, strides=strides).shape
    return np.lib.stride_tricks.as_strided(a, shape=shape, strides=strides) 

然后我尝试将其应用于 df:

df=pd.DataFrame(data=np.random.rand(180000,1),columns=['foo'])
df['bar']=df[['foo']].apply(efficient_f,raw=True)
# note the double [[, otherwise pd.Series.apply
# (not accepting raw, and axis kwargs) will be called instead of pd.DataFrame.

它运行得非常好,并且确实带来了显着的性能提升。 但是,我仍然收到以下错误:

ValueError: Shape of passed values is (1, 179951), indices imply (1, 180000).

这是因为我使用的是 wSize=50,这会产生

rolling_window_using_strides(df['foo'].values,50).shape
(1L, 179951L, 50L)

有没有办法通过零/np.nan 在边界处填充来获得

(1L, 180000, 50L)

因此与原始向量大小相同

【问题讨论】:

  • 垫在末尾还是开始?
  • 不确定默认情况下它的行为如何......我猜在开始时

标签: python pandas numpy sliding-window


【解决方案1】:

这是使用np.lib.stride_tricks.as_strided 解决问题的一种方法-

def strided_axis0(a, fillval, L): # a is 1D array
    a_ext = np.concatenate(( np.full(L-1,fillval) ,a))
    n = a_ext.strides[0]
    strided = np.lib.stride_tricks.as_strided     
    return strided(a_ext, shape=(a.shape[0],L), strides=(n,n))

示例运行 -

In [95]: np.random.seed(0)

In [96]: a = np.random.rand(8,1)

In [97]: a
Out[97]: 
array([[ 0.55],
       [ 0.72],
       [ 0.6 ],
       [ 0.54],
       [ 0.42],
       [ 0.65],
       [ 0.44],
       [ 0.89]])

In [98]: strided_axis0(a[:,0], fillval=np.nan, L=3)
Out[98]: 
array([[  nan,   nan,  0.55],
       [  nan,  0.55,  0.72],
       [ 0.55,  0.72,  0.6 ],
       [ 0.72,  0.6 ,  0.54],
       [ 0.6 ,  0.54,  0.42],
       [ 0.54,  0.42,  0.65],
       [ 0.42,  0.65,  0.44],
       [ 0.65,  0.44,  0.89]])

【讨论】:

  • 我希望能找到 numpy 函数的参数,但这个解决方案效果很好
猜你喜欢
  • 2021-06-13
  • 1970-01-01
  • 2011-01-12
  • 2017-01-07
  • 1970-01-01
  • 2013-07-19
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多