Have trouble accessing to the prediction result generated by DeepAREstimator using PandasDataset #2282
-
Hi, In this PandasDataset tutorial, it shows an example of how to do the forecasting with multiple time series data including static and dynamic features. I followed the code in the example. It finished with no errors. However, when I tried to view the prediction result using list(forecast_it), I got an empty list. Was that the correct way to get the prediction result from the DeepAREstimator model? Thanks!!! Here is the code:
Environment: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You have to run this line again before
Hope this helps. |
Beta Was this translation helpful? Give feedback.
You have to run this line again before
list(forecast_it)
because forecast_it is iterator.forecast_it, ts_it = make_evaluation_predictions(dataset=test, predictor=predictor)
Hope this helps.