AutoViML / Auto_TS

Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Created by Ram Seshadri. Collaborators welcome.
Apache License 2.0
723 stars 113 forks source link

The way to set number of iterations for fbprophet model #88

Closed medphisiker closed 2 years ago

medphisiker commented 2 years ago

Hello, I get this message from fbprophet model

"Maximum number of iterations hit, may not be at an optima".

Is there way to increase iterations for it ?

AutoViML commented 2 years ago

Hi @medphisiker 👍 Great suggestion. I have added "kwargs" to FB Prophet as input to auto_timeseries from now on. All you have to do is change your initial step where you define the FB prophet model in auto_timeseries as follows and you will be able to run them longer and using any FB Prophet model argument you select.

add-fb-prophet

Hope this helps. You need to upgrade to the latest version via:

pip install auto-ts --upgrade
medphisiker commented 2 years ago

Wow ! Thank you very much ! =) It is very good and useful update ) And I think it makes this framework more agile )