[ENH] Sktime regression integration #209
Open
Omswastik-11 wants to merge 4 commits intohyperactive-project:mainfrom
Open
[ENH] Sktime regression integration #209Omswastik-11 wants to merge 4 commits intohyperactive-project:mainfrom
Omswastik-11 wants to merge 4 commits intohyperactive-project:mainfrom
Conversation
fkiraly
requested changes
Nov 28, 2025
Collaborator
fkiraly
left a comment
There was a problem hiding this comment.
The failures are due to lack of isolation of the imports in get_test_params - have a look how this is solved for the time series classification case.
Author
|
Hi @fkiraly !! Is it looks fine now ? |
SimonBlanke
requested changes
Dec 11, 2025
Collaborator
SimonBlanke
left a comment
There was a problem hiding this comment.
Already looks good! Please resolve the comments.
| dict | ||
| Additional metadata about the search. | ||
| """ | ||
| from sktime.classification.model_evaluation import evaluate |
Collaborator
There was a problem hiding this comment.
This should be regression
Author
There was a problem hiding this comment.
sktime.regression doesnot have evaluate
Author
There was a problem hiding this comment.
Hi @SimonBlanke !! may be I can work on this sktime/sktime#9176 then we can rework on this PR ?
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.
Summary
This PR adds integration for sktime time series regression, addressing . It introduces TSROptCV, enabling users to optimize sktime regressors using any Hyperactive optimizer (e.g., Random Search, Hill Climbing, Optuna TPE).
Key Changes
TSROptCVin_regression.py— a delegate regressor that wraps the Hyperactive optimization workflow.SktimeRegressionExperimentinsktime_regression.py— an adapter connecting sktime’sevaluate()function to Hyperactive’s experiment interface.TSROptCVin__init__.py.test_sktime_estimators.pyto ensure compatibility with the sktime estimator contract._BaseGFOadapterto exposebest_score_for consistency with other integrations.API Usage
Testing
Fixes
Fixes #196