-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
TimeSeriesSplit with anchour option #8249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I would consider a |
nice there's some info here: i checked TimeSplit source code, there's a group not used sensor_id,timestamp,value maybe this could help split "groupying by" sensor_id, or something like it? sensor_id,time we should do: |
hi guys, i don't know yet how generators work with sklearn / python, i'm new here... could be possible a version of TimeSeriesSplit with rolling window?
https://www.mathworks.com/help/econ/rolling-window-estimation-of-state-space-models.html
for example instead of :
[0, 1, 2] [3]
[0, 1, 2, 3] [4]
[0, 1, 2, 3, 4] [5]
produce something like (window-size=2)
[0, 1] [2]
[1, 2] [3]
[2, 3] [4]
[4, 5] [6]
[5, 6] [7]
...
The text was updated successfully, but these errors were encountered: