Closed xir4n closed 3 months ago
Another breaking change is that MuReNNDirect
now uses alternate_gh=False
. @xir4n says it's better-conditioned in terms of frame bounds, particularly when the input length is not a power of two.
remove properties, conflict revolved
What's Changed:
to_conv1d
as described in #45.or dictionaryinstead of an integer.Conv1d
kernel sizes inMuReNNDirect
are no longer equal to theT
; they are now equal toT * Q[j]
whereQ[j]
is the number of filters per octave at octavej
.J_phi
to specify the number of levels of downsampling inMuReNNDirect
.MuReNNDirect
has been changed from a 5-dimensional tensor with shape(B, C, Q, J, T)
to a 4-dimensional tensor with shape(B, C, sum(Q_j), T//2**J_phi)
. This is a breaking change.alternate_gh
is now false