-
Notifications
You must be signed in to change notification settings - Fork 205
Open
Description
First, thanks for the very nice work!
In your implementation as well as in the paper, it seems that the proposed filters (which are the binomial coefficients) are only valid for strides/downsampling factors of 2. Extrapolating from this, does it mean that I need to use the trinomial coefficients for stride 3, quadrinomial coefficients for stride 4, and so on?
By the way, you could simplify your code in downsample.py using scipy.special.binom instead of hard-coding each filter. Something like a = np.asarray([binom(filt_size-1, i) for i in range(filt_size)])
which will take care of arbitrary filt_size
Metadata
Metadata
Assignees
Labels
No labels