cross_validate should not be used to make predictions but to evaluate the
performance, the parameter, etc of models.
You probably want to check cross_val_predict to get the prediction.
However, be aware of what it involves:
https://scikit-learn.org/stable/modules/cross_validation.html#obtaining-pre
hi
this function is exactly what i wanted. However, the description of this
function contained this: Passing these predictions into an evaluation metric
may not be a valid way to measure generalization performance.
Could i use this prediction to calculate the accuracy? I am not sure after
seei