Parallel Forecast n_jobs >1 #76
-
I was trying out the parallel forecast function and got the following error. Did I miss anything in my code? I ended up modifying
This is my code. Training set is assembled from two time series, each has its own unique_id. I want to forecast out for 48 steps:
The error happened when the intermediate step didn't output a dict. Instead it output an array of a list of forecast arrays alternating with column headers like this:
And pd.DataFrame() couldn't resolve it. So I made the following changes in
Finally I was able to get a dataframe with 80% & 95% prediction intervals or just the 95% with
Let me know if there is a better way of handling this. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @tuttoaposto! It seems that the problem is related to #63. Yesterday we released a version that fixes the issue. Could you please try with the new version using |
Beta Was this translation helpful? Give feedback.
-
@tuttoaposto, if you are open, we would like to connect with you. You can send me an email or we can talk via our Slack. |
Beta Was this translation helpful? Give feedback.
Hi @tuttoaposto! It seems that the problem is related to #63. Yesterday we released a version that fixes the issue. Could you please try with the new version using
pip install --upgrade statsforecast
orpip install statsforecast>=0.5.1
? Let us know if the problem is solved or if you have more problems. :)