You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code is written to allow the hop size and chunk size to be different. But if you check their values, they are the same. I experimented with a smaller hop size for a while, but found hop size == chunk size to be best.
As mentioned in the conclusion of our paper, we don't yet know how to solve the boundary artifacts. However, our experiments indicate that these artifacts are less severe than the periodicity artifacts.
from the code:
cargan/cargan/core.py
Line 212 in 61051fa
for each chunk output samples, it will be add to
signals
,but in the for loop,
cargan/cargan/core.py
Line 207 in 61051fa
we have the feat_hop,,
for my understand, it will cumsum on the signals, but we only need the first feat_hop * hop_size samples, right?
The text was updated successfully, but these errors were encountered: