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

Invalid Parameter format for verbosity expect int but value='None' #64

Closed amirkhalesi closed 2 years ago

amirkhalesi commented 2 years ago

Greetings. This error occurs in the ML part of training, possibly due to update of XGboost library. solution: Auto_TS/auto_ts/models/build_ml.py/ : line 194 model = XGBRegressor(n_estimators=400, verbosity=None, random_state=0) to: model = XGBRegressor(n_estimators=400, verbosity=0, random_state=0)

line 214 model = XGBRegressor(n_estimators=400, verbosity=None, random_state=0) to: model = XGBRegressor(n_estimators=400, verbosity=0, random_state=0)

fixes the problem

AutoViML commented 2 years ago

Hi @amirkhalesi 👍 It is fixed now. Please do the upgrade to latest version by: pip install auto-ts --upgrade

Please confirm that fixes the problem. Thanks Auto_ViML

amirkhalesi commented 2 years ago

Hi @amirkhalesi +1 It is fixed now. Please do the upgrade to latest version by: pip install auto-ts --upgrade

Please confirm that fixes the problem. Thanks Auto_ViML

Thanks for the update. It is currently fixed. Closing the Issue