Slackbot
07/16/2023, 5:21 PMMax (Nixtla)
07/16/2023, 5:51 PMKorek Testowy
07/19/2023, 4:07 PMKorek Testowy
07/19/2023, 9:44 PMKorek Testowy
07/23/2023, 6:01 PMMax (Nixtla)
07/24/2023, 1:33 AMforecast
method is completely compatible with distributed clusters, so it does not store any model parameters. (It would be expensive and slow to store local parameters accross clusters and then send them over different machines). If you want to store parameters for every model you can use the fit
and predict
methods. However, those methods are not defined for distrubed engines like Spark, Ray or Dask.
So, yes, indeed, statsforecast does not support distributed .fit and .predict. The intuition behind is that with statistical methods (local models) it would probably make more sense to always retrain before forecasting.
If you want to use pretrained global models for forecasting and save on retraining, we would probably recommend mlforecast.Max (Nixtla)
07/24/2023, 1:35 AM.update
method. Here is a tutorial: https://nixtla.github.io/mlforecast/docs/end_to_end_walkthrough.html#updating-series-values