JoaquinAmatRodrigo / skforecast

Time series forecasting with machine learning models
https://skforecast.org
BSD 3-Clause "New" or "Revised" License
1.09k stars 125 forks source link

Disable progress bar #661

Closed ZhikangLai closed 4 months ago

ZhikangLai commented 5 months ago

Hello there. skforecast is excellent package. But I think some functions need to be improved. For instance, When I call the model, and I will out lots of training message(train bar). Not everyone needs this information. So I think the creator of this toolbox can add this feature which can let user choose for themselves whether to ignore information about the training process.

1712800773636

JavierEscobarOrtiz commented 5 months ago

Hello @ZhikangLai

You can suppress the progress bar in all the model_selection functions with the argument show_progress = False.

Regarding the print, it is caused by return_best = True. Skforecast doesn't have the option to suppress this print if you want skforecast to refit the model after the hyperparameter search.

Hope it helps