8000 [MRG] Cross-validation for time series (inserting gaps between the training set and the test set) by WenjieZ · Pull Request #13761 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

[MRG] Cross-validation for time series (inserting gaps between the training set and the test set) #13761

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

Closed
wants to merge 17 commits into from
Closed
8 changes: 8 additions & 0 deletions sklearn/model_selection/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
from ._split import PredefinedSplit
from ._split import train_test_split
from ._split import check_cv
from ._split import GapCrossValidator
from ._split import GapLeavePOut
from ._split import GapKFold
from ._split import gap_train_test_split

from ._validation import cross_val_score
from ._validation import cross_val_predict
Expand Down Expand Up @@ -49,6 +53,10 @@
'StratifiedKFold',
'StratifiedShuffleSplit',
'check_cv',
'GapCrossValidator',
'GapLeavePOut',
'GapKFold',
'gap_train_test_split',
'cross_val_predict',
'cross_val_score',
'cross_validate',
Expand Down
Loading
0