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
I am trying to create rolling window sequences to feed as input to a reconstruction model (LSTM-AE). Since it's not prediction, you want target_size = 0 so that the last window contains the last point, i.e. all points are captured in the window sequences. However, setting target_size = 0 raises an indexing error at line 108 aka
Description
I am trying to create rolling window sequences to feed as input to a reconstruction model (LSTM-AE). Since it's not prediction, you want target_size = 0 so that the last window contains the last point, i.e. all points are captured in the window sequences. However, setting target_size = 0 raises an indexing error at line 108 aka
in
mlstars/custom/timeseries_preprocessing.py
.What I Did
The text was updated successfully, but these errors were encountered: