Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC] add explanation of dunder method construction and postprocessing in pipelines to forecasting tutorial #2608

Open
fkiraly opened this issue May 5, 2022 · 2 comments
Labels
documentation Documentation & tutorials good first issue Good for newcomers module:forecasting forecasting module: forecasting, incl probabilistic and hierarchical forecasting

Comments

@fkiraly
Copy link
Collaborator

fkiraly commented May 5, 2022

An explanation of "compact" dunder pipelining with TransformedTargetForecaster should be added to the forecasting tutorial - not replacing, but being added to the subsections where pipelines are explained.

For example, instead of

pipe = TransformedTargetForecaster(
    steps=[
        ("imputer", Imputer()),
        ("forecaster", UnobservedComponents())
    ]
)

one can also write

pipe = Imputer() * UnobservedComponents()

This would also be a great opportunity to explain postprocessing, i.e., transformers can also be added after the forecaster since 0.11.2.

@fkiraly fkiraly added good first issue Good for newcomers documentation Documentation & tutorials module:forecasting forecasting module: forecasting, incl probabilistic and hierarchical forecasting labels May 5, 2022
@fkiraly fkiraly changed the title [DOC] add explanation of dunder methods to forecasting tutorial [DOC] add explanation of dunder method construction and postprocessing in pipelines to forecasting tutorial May 5, 2022
@nshahpazov
Copy link
Contributor

@fkiraly I would like to add this. There's already documentation on the dunder method usage, but nothing about post-processing.

@fkiraly
Copy link
Collaborator Author

fkiraly commented Dec 3, 2022

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Documentation & tutorials good first issue Good for newcomers module:forecasting forecasting module: forecasting, incl probabilistic and hierarchical forecasting
Projects
None yet
Development

No branches or pull requests

2 participants