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
Thank you for your good work. It's really helpful for beginners like me. I have the following doubt.
for i in speech_timestamps:
start = int(min((i['start']+win_step/2)//win_step, NumWin))
end = int(min((i['end']+win_step/2)//win_step, NumWin))
speech_segments[start:end] = 1
Here, I do not understand how the mapping to start and end works. Isn't it supposed to be i[''start"]+win_len/2?
The text was updated successfully, but these errors were encountered:
Thank you for your good work. It's really helpful for beginners like me. I have the following doubt.
for i in speech_timestamps:
start = int(min((i['start']+win_step/2)//win_step, NumWin))
end = int(min((i['end']+win_step/2)//win_step, NumWin))
speech_segments[start:end] = 1
Here, I do not understand how the mapping to start and end works. Isn't it supposed to be i[''start"]+win_len/2?
The text was updated successfully, but these errors were encountered: