Open
Conversation
This was referenced Dec 14, 2025
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 a Support Vector Regression (SVR) baseline to CY-Bench, following the same structure as the existing scikit-learn baselines.
Changes
Added
SVRModelincybench/models/svr_model.pysklearn.svm.SVRwith an RBF kernel (C=1.0,epsilon=0.1) as the base estimator.BaseSklearnModelfeature pipeline (same design asSklearnRidgeandSklearnRF).estimator__C:[0.1, 1.0, 10.0]estimator__epsilon:[0.01, 0.1, 0.5]Added residual variant:
SVRResincybench/models/residual_models.py, wrappingSVRModelinside the existingResidualModellogic.Registered the new models in the benchmark runner:
SVRModelandSVRResincybench/runs/run_benchmark.py._BASELINE_MODEL_CONSTRUCTORSas"SVRModel"and"SVRRes"so they can be run as standard baselines.Updated plotting utilities:
model_short_namesincybench/runs/results_plots.pywith:"SVRModel": "SVR""SVRRes": "SVR-Res"Notes
SklearnRandomForestandXGBoostModel, so SVR shares the same feature engineering and evaluation pipeline.scikit-learndependency.Checklist
SVRModelwithBaseSklearnModelfeature pipelineSVRResresidual wrapperrun_benchmark.pyresults_plots.pyCloses #378.