TimeGPT-1: production ready pre-trained Time Series Foundation Model for forecasting and anomaly detection. Generative pretrained transformer for time series trained on over 100B data points. It's capable of accurately predicting various domains such as retail, electricity, finance, and IoT with just a few lines of code 🚀.
Adds the hist_exog_list argument to NixtlaClient.forecast so users can indicate which features they want to treat as historic. The previous behavior was to treat all features in df that weren't in X_df as historic, this now requires that decision to be explicit, so the proposed behavior is:
If X_df isn't specified and df has exogenous features, they are ignored.
If X_df was provided but it doesn't have all the features in df and hist_exog is not provided, only the features from X_df are used, the rest are ignored.
If X_df was provided but it doesn't have all the features in df and hist_exog is provided, the features from X_df and the hist_exog features are used, the rest (if any) are ignored.
When features are ignored a warning is issued. The used features, both historic and future, are logged.
Adds the
hist_exog_list
argument toNixtlaClient.forecast
so users can indicate which features they want to treat as historic. The previous behavior was to treat all features indf
that weren't inX_df
as historic, this now requires that decision to be explicit, so the proposed behavior is:X_df
isn't specified anddf
has exogenous features, they are ignored.X_df
was provided but it doesn't have all the features indf
andhist_exog
is not provided, only the features fromX_df
are used, the rest are ignored.X_df
was provided but it doesn't have all the features indf
andhist_exog
is provided, the features fromX_df
and thehist_exog
features are used, the rest (if any) are ignored.When features are ignored a warning is issued. The used features, both historic and future, are logged.