Faridun Mamadbekov
06/27/2024, 12:33 PMfit()
and training with cross_validation(refit=True, ..)
? In other words is it acceptable to run cross_validation(refit=True, ..)
instead of fit()
, because with refit=True
, the CV method is internally running fit()
already? I understand, in the case of cross_validation the tail of input data will be split into validation sets depending on the n_windows
, step_size
, etc. The question is more about the equivalence of the fit()
and training done inside cross_validation()
. Is it ok to omit the fit()
and go straight for cross_validation(refit=True)
if the goal is to evaluate a methods performance on data?Marco
06/27/2024, 1:37 PMFaridun Mamadbekov
06/27/2024, 2:04 PM