-
Notifications
You must be signed in to change notification settings - Fork 4.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The fit method do not work with pystan==2.17.0.0 #324
Comments
Thanks for the heads up on this. When fbprophet is installed, the models are compiled in stan and saved in a pickle. The issue here seems to be in loading the models pickled under an older version of pystan in the newer version of pystan. I was able to replicate this issue, and found that it was fixed by re-intsalling fbprophet:
Unit tests pass under the new Stan version. |
Thanks a lot, @bletham. Maybe a troubleshooting section with this info will help a lot. |
Received this same error on my system with fbprophet updated from 0.1.1 to 0.2, and python 3.5 while using jupyter. Running
Or
Haven't tested this thoroughly but the fit error did go away. |
Thanks @dbricare , that makes sense, the cached wheel would also contain the models compiled under the old pystan version. I think that |
Great success with this under anaconda Python 2.7. Thank you @bletham
|
I installed prophet 0.2 using conda, pystan version 2.14 under python 3.6. I get the following error: |
I received the same error I used the following commands to finally get it working,
|
I added to the install directions that fbprophet may need to be re-installed after upgrading pystan. |
The text was updated successfully, but these errors were encountered: