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
PyAF generates a lot of lags for each cycle residue to compute additional signal components (AR, ARX, SVR, XGB, XGBX, ...)
These lags are generated on the same CPU for each cycle residue to compute a whole set of models.
The generated lags can be shared between all these models, using the same lags internal dataframe. Keras, XGBoost and Scikit-Learn models can use the same input numpy vectors.
This is a CPU time + memory optimization. No impact on forecast models and/or forecast values is expected.
Release date : 2022-07-14
The text was updated successfully, but these errors were encountered:
PyAF generates a lot of lags for each cycle residue to compute additional signal components (AR, ARX, SVR, XGB, XGBX, ...)
These lags are generated on the same CPU for each cycle residue to compute a whole set of models.
The generated lags can be shared between all these models, using the same lags internal dataframe. Keras, XGBoost and Scikit-Learn models can use the same input numpy vectors.
This is a CPU time + memory optimization. No impact on forecast models and/or forecast values is expected.
Release date : 2022-07-14
The text was updated successfully, but these errors were encountered: