Closed stepthom closed 3 years ago
I noticed that FLAML will only retrain on the full dataset if the eval_method parameter is set to 'holdout':
eval_method
'holdout'
https://github.com/microsoft/FLAML/blob/b04b00dc9d4bc47a4135f777ca7e419854ceb140/flaml/automl.py#L910-L911
Why not retrain on full dataset for other eval_methods, such as 'cv'?
'cv'
The retraining happens right after cross-validation: https://github.com/microsoft/FLAML/blob/b04b00dc9d4bc47a4135f777ca7e419854ceb140/flaml/ml.py#L259
Oh, I see - thank you very much! 👍
I noticed that FLAML will only retrain on the full dataset if the
eval_method
parameter is set to'holdout'
:https://github.com/microsoft/FLAML/blob/b04b00dc9d4bc47a4135f777ca7e419854ceb140/flaml/automl.py#L910-L911
Why not retrain on full dataset for other eval_methods, such as
'cv'
?