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 just tried it, is there any way to deal with temporal leaks (eg for regression).
Currently I'm unsure the lib deals with temporeal leaks, for example the current score that is spit out of Optimizer is a cross validation score but that probably is slightlty overestimated in case some folds are trained in the future compared to the validation set.
Hi @AxeldeRomblay , thx for your reply, I hadnt seen this was already referenced. Wow, tweaking the code with throw-away lines, that is a no-go for me, but if you think there is no other way, no pb. ;)
Hi, very nice lib Axel,
I just tried it, is there any way to deal with temporal leaks (eg for regression).
Currently I'm unsure the lib deals with temporeal leaks, for example the current score that is spit out of Optimizer is a cross validation score but that probably is slightlty overestimated in case some folds are trained in the future compared to the validation set.
-> one way to deal with this is currently to do time-series cross validation with the following method:
https://robjhyndman.com/hyndsight/tscv/
Sklearn has implemented it with the folowing : https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.TimeSeriesSplit.html
that could be a good PR for mlbox !
Best,
Thomas
The text was updated successfully, but these errors were encountered: