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
in addition to input_chunk_length and output_chunk_length, add a max_past_lag and max_future_lag parameter to encoder creation. With this, we could move the logic that is now implemented in the forecasting models to the Encoder side (for example RegressionModel._model_encoder_settings() and RegressionModel._get_encoders_n() ). This would make it easier to use the encoders as standalone covariate generators
add add_encoders to all models (LFMs still don’t support it)
rename future_covariate and others covariate params to future_covariates for consistency (breaking for users that use encoders as standalone but I think it makes sense to rename them)
move encoder module from darts.utils.data into darts.dataprocessing.encoders ?
The text was updated successfully, but these errors were encountered:
Improve encoders:
The text was updated successfully, but these errors were encountered: