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
in reademe, 10ms is overlap, but in code: N_fr = int((signal.shape[0]-wlen)/(wshift))
this formula means 10ms is shift, actually, the N_fr should be: N_fr = int((signal.shape[0]-(wlen-wshift))/(wshift))
but if 10ms is overlap, N_fr should be: N_fr = int((signal.shape[0]-wshift)/(wlen-wshift))
if like this, the number of chunk will be less than batch_num.
I'm confused.
The text was updated successfully, but these errors were encountered:
in reademe, 10ms is overlap, but in code:
N_fr = int((signal.shape[0]-wlen)/(wshift))
this formula means 10ms is shift, actually, the N_fr should be:
N_fr = int((signal.shape[0]-(wlen-wshift))/(wshift))
but if 10ms is overlap, N_fr should be:
N_fr = int((signal.shape[0]-wshift)/(wlen-wshift))
if like this, the number of chunk will be less than batch_num.
I'm confused.
The text was updated successfully, but these errors were encountered: