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
Is your feature request related to a problem? Please describe.
Split-CP is only available with "split" keyword or ShuffleSplit class of scikit-learn.
Describe the solution you'd like
Propose more compatible split BaseCrossValidator/BaseShuffleSplit.
Describe alternatives you've considered
In practice, we need to use the predictions aggregation for cross-CPs and not for split-CPs. All you need to do is find out the number of splits using the get_n_splits method to know whether it's a split or a cross.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Split-CP is only available with
"split"
keyword orShuffleSplit
class of scikit-learn.Describe the solution you'd like
Propose more compatible split
BaseCrossValidator
/BaseShuffleSplit
.Describe alternatives you've considered
In practice, we need to use the predictions aggregation for cross-CPs and not for split-CPs. All you need to do is find out the number of splits using the
get_n_splits
method to know whether it's a split or a cross.The text was updated successfully, but these errors were encountered: