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

Extend pipeline functionality to classical forecasters #68

Closed
mloning opened this issue May 20, 2019 · 3 comments
Closed

Extend pipeline functionality to classical forecasters #68

mloning opened this issue May 20, 2019 · 3 comments
Labels
API design API design & software architecture implementing framework Implementing or improving framework for learning tasks, e.g., base class functionality

Comments

@mloning
Copy link
Contributor

mloning commented May 20, 2019

@mloning mloning added API design API design & software architecture implementing framework Implementing or improving framework for learning tasks, e.g., base class functionality labels May 20, 2019
@mloning
Copy link
Contributor Author

mloning commented Jun 19, 2019

Useful transformers on target (y) include

  • detrending
  • deseasonalizing

Transformations have to be applied before passing to prediction model and inverse transformations after prediction model (i.e. on predicted values)

@mloning
Copy link
Contributor Author

mloning commented Jun 30, 2019

Following #44 and scikit-learns TransformedTargetRegressor, I would implement a TransformedTargetForecaster to handle y-transformations.

But in a time series setting,

  • there may be some y-transformation where one would not want to do an inverse transform on y after prediction, e.g. smoothing transforms of y, not sure how to handle this?
  • one may want to chain multiple transformations (i.e. in a pipeline), but passing a pipeline of transformers would not work, as currently sklearn's Pipeline does not have an inverse_transform method.

@mloning
Copy link
Contributor Author

mloning commented Oct 29, 2019

Closed by #111

@mloning mloning closed this as completed Oct 29, 2019
Workstream: forecasting and series transformers automation moved this from To do to Done Oct 29, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API design API design & software architecture implementing framework Implementing or improving framework for learning tasks, e.g., base class functionality
Development

No branches or pull requests

1 participant