prophet icon indicating copy to clipboard operation
prophet copied to clipboard

no such file C:\Users\w00612942\Anaconda3\Lib\site-packages\prophet\stan_model\prophet_model.bin

Open WZFish opened this issue 3 years ago • 2 comments

When I use prophet to forcast, I new a prophet object by

model=prophet.Prophet() model.fit(train_df)

and There are error AttributeError: 'Prophet' object has no attribute 'stan_backend' And the I see the issue that should change it to:

model=prophet.Prophet(stan_backend='CMDSTANPY') model.fit(train_df)

but it have the problem : no such file C:\Users\w00612942\Anaconda3\Lib\site-packages\prophet\stan_model\prophet_model.bin

How can I use it? Thank you!

WZFish avatar May 25 '22 09:05 WZFish

How did you install prophet?

WardBrian avatar May 31 '22 16:05 WardBrian

This has been resolved in prophet 1.1. You can now pip install prophet directly from PyPI

akosfurton avatar Jun 27 '22 14:06 akosfurton