GroupKFold #381
-
Hi - is it possible to use a Group KFold cross-validation scheme in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello @lukegriffiths, This is indeed a suggestion that was put forward in issue #202 but has not yet been addressed. I agree with you that a customised cross-validation scheme would be welcome. In practice, this requires that parameters to the When you say "I need to split up my data by group because data points within a group can be very similar", are you referring to a paper that uses this splitting technique? Because if you group similar points together, aren't you afraid of having models that overfit? I'm curious to read your answer. |
Beta Was this translation helpful? Give feedback.
Hello @lukegriffiths,
This is indeed a suggestion that was put forward in issue #202 but has not yet been addressed. I agree with you that a customised cross-validation scheme would be welcome. In practice, this requires that parameters to the
split
method (such asgroup=...
) can be passed from thefit
method.When you say "I need to split up my data by group because data points within a group can be very similar", are you referring to a paper that uses this splitting technique? Because if you group similar points together, aren't you afraid of having models that overfit?
I'm curious to read your answer.