carlomazzaferro / scikit-hts-examples

Example usage of scikit-hts
MIT License
53 stars 22 forks source link

Prophet model in scikit-hts package is not working #15

Open mugiwarakaizoku opened 3 years ago

mugiwarakaizoku commented 3 years ago

When I'm using latest version of scikit-hts package and trying to do a hierarchal forecasting that uses prophet model. Prophet version is 1.0 and pystan version is 2.19.1.1. When I'm trying to run clf = hts.HTSRegressor(model='prophet', revision_method='AHP', n_jobs=0) model = clf.fit(hierarchy_train, hierarchy) It is throwing an error saying, "AttributeError: 'NoneType' object has no attribute 'fit'". I'm not facing any issues when I'm trying to run auto_arima, holt_winters and sarimax models. Also the commands to install these packages from scikit-hts are also not working. pip install scikit-hts[x], (where x =all/geo/arima/prophet) didn't work. How Can I resolve this issue?

Himank-K commented 2 years ago

I am having the same issue with: clf = HTSRegressor(model='prophet', revision_method='OLS', n_jobs=12)