Does cross_validate shuffle the data?

Hi,

I don’t know if I understood correctly but I guess cross_validate does not shuffle the data ? Am I right ?

Thank you for your asnwer,

By default cross_validate use cv=5 that is equivalent to KFold(n_splits=5) in regression and StratifiedKFold(n_splits=5) in classification. For these 2 strategies, no shuffling will happen by default. Then, you can plug a cv strategy that would shuffle the data but this is not the case by default.