You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usually this is because PyStan is not working correctly. Could you run this code to check if it is?
import pystan
model_code = 'parameters {real y;} model {y ~ normal(0,1);}'
model = pystan.StanModel(model_code=model_code) # this will take a minute
y = model.sampling(n_jobs=1).extract()['y']
y.mean() # should be close to 0
I kept getting this error when trying to fit prophet model.
Has anyone encountered this issue before? What could be causing this error?
The text was updated successfully, but these errors were encountered: