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
Regarding the PredictionESN, your approach works perfectly with series in the shape (x, n_input) and "labels" with shape (x, n_output)
However, for time series forecasting, to have the possibility of using validation for improving the results, it is common to divide the series in small windows with a fixed length.
For instance, if window size = 12, the input series will have shape (x', 12, n_input) and the labels with shape (x', n_output).
This approach is just like dividing the data in batches.
Do you think that the "windowing" approach is not necessary?
First of all, great work !!
I'd like to know, how to proceed with windowing in your ESN approach ?
Maybe, adding one more weight layer at the beginning ?
Regards
The text was updated successfully, but these errors were encountered: