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
Hi, @OdysseasKr
Thanks for your work. gen_batch(chunk.iloc[:,1], chunk.iloc[:,0], chunk.shape[0]-window_size, 0, window_size) in gen.py. Why not chunk.shape[0]-window_size+1?
ex: batch size: 5, window_size = 2, the number of sliding windows should be 5-2+1=4 if I understand correctly,
Thanks.
The text was updated successfully, but these errors were encountered:
Hi, @OdysseasKr
Thanks for your work. gen_batch(chunk.iloc[:,1], chunk.iloc[:,0], chunk.shape[0]-window_size, 0, window_size) in gen.py. Why not chunk.shape[0]-window_size+1?
ex: batch size: 5, window_size = 2, the number of sliding windows should be 5-2+1=4 if I understand correctly,
Thanks.
The text was updated successfully, but these errors were encountered: