Add hyperparameter-searchable Time Series Forecasting Pipeline#23
Open
himelds wants to merge 4 commits intoSimonBlanke:mainfrom
Open
Add hyperparameter-searchable Time Series Forecasting Pipeline#23himelds wants to merge 4 commits intoSimonBlanke:mainfrom
himelds wants to merge 4 commits intoSimonBlanke:mainfrom
Conversation
Owner
|
thanks for opening the PR. Please check the existing tests and look into how to add this new test-function to the tests. |
SimonBlanke
requested changes
Apr 22, 2026
Owner
SimonBlanke
left a comment
There was a problem hiding this comment.
Just a quick review pass. Please add testing :-)
Author
|
Hi @SimonBlanke, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR introduces a flexible, hyperparameter-searchable time series forecasting pipeline. It allows for automated search over feature engineering parameters (lags, rolling windows, differencing), preprocessing scalers, and various machine learning models (Ridge, Random Forest, Gradient Boosting).
Related Issues
Fixes #20
Type of Change
How was this solved?
apply_time_series_featuresfunction usingsliding_window_viewfor efficient lag and rolling statistics extraction.TimeSeriesPipelineForecasterFunctionthat integrates data loading, chronological splitting (80/20 train/test), and model selection.Ridge,RandomForest, andGradientBoostingwith a sharedmodel__regularizationparameter mapped to model-specific hyperparameters (alpha, max_depth, learning_rate).Checklist
Required
Tests
Documentation
Testing
Additional Notes