Biagio Principe
06/25/2024, 4:00 PMJosé Morales
06/25/2024, 4:31 PMmax_horizon
in the fit_config
, e.g. fit_config=lambda trial: {'max_horizon': 10}
Biagio Principe
06/25/2024, 4:36 PMBiagio Principe
06/25/2024, 4:54 PMJosé Morales
06/25/2024, 4:56 PMBiagio Principe
06/25/2024, 4:56 PMBiagio Principe
06/25/2024, 4:56 PMBiagio Principe
06/26/2024, 1:05 PMJosé Morales
06/26/2024, 4:53 PMMLForecast.preprocess
to generate the training set as is done here, train your models individually (one for each column in y) and assign them to the MLForecast.models_
attribute as a list, e.g. mlf.models_ = {'lasso': [model1, model2, model3]}
, you can then call MLForecast.predict
as usualBiagio Principe
06/26/2024, 7:22 PM