I was wondering how sklearn.model_selection.RandomizedSearchCV
(and for GridSearchCV
in an extent) was handling models, info and memory.
In fact, despite some researches, I couldn't find any resources explaining (either with n_jobs =-1
or >1
) what was stored every stacking step.
Even though I'm pretty sure that every model is stored because you can retrieve the model with the best parameters, but does it keep every one of them? Or does it keep at every step the best one between the last constructed one with the stored one?
Thanks in advance for your responses :)