From 4b3f0aab1c9c75f49411cdafcbd0a8b6d95ac83d Mon Sep 17 00:00:00 2001 From: Victoriya Fedotova Date: Tue, 7 Jul 2026 04:30:59 -0700 Subject: [PATCH 1/2] Return SVR year_prediction_msd dataset into regular testing scope --- configs/regular/svm.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configs/regular/svm.json b/configs/regular/svm.json index 031f7eef..38a1fcdb 100644 --- a/configs/regular/svm.json +++ b/configs/regular/svm.json @@ -36,6 +36,10 @@ } ], "svr datasets": [ + { + "data": { "dataset": "year_prediction_msd", "split_kwargs": { "train_size": 20000, "test_size": null } }, + "algorithm": { "estimator_params": { "C": 0.01, "kernel": "rbf" } } + }, { "data": { "dataset": "fried", "split_kwargs": { "train_size": 0.5, "test_size": 0.5 } }, "algorithm": { "estimator_params": { "C": 2.0, "kernel": "rbf" } } From 95c96b5eb71abfcd3ff8e8a7f5f7873b81823bbd Mon Sep 17 00:00:00 2001 From: Victoriya Fedotova Date: Tue, 7 Jul 2026 04:40:33 -0700 Subject: [PATCH 2/2] Fixes --- configs/regular/svm.json | 5 ++++- configs/weekly/svm.json | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/configs/regular/svm.json b/configs/regular/svm.json index 38a1fcdb..461868fc 100644 --- a/configs/regular/svm.json +++ b/configs/regular/svm.json @@ -37,7 +37,10 @@ ], "svr datasets": [ { - "data": { "dataset": "year_prediction_msd", "split_kwargs": { "train_size": 20000, "test_size": null } }, + "data": { + "dataset": "year_prediction_msd", + "split_kwargs": { "train_size": 20000, "test_size": null } + }, "algorithm": { "estimator_params": { "C": 0.01, "kernel": "rbf" } } }, { diff --git a/configs/weekly/svm.json b/configs/weekly/svm.json index 3119093f..65bb4585 100644 --- a/configs/weekly/svm.json +++ b/configs/weekly/svm.json @@ -39,7 +39,7 @@ "dataset": "year_prediction_msd", "split_kwargs": { "train_size": 50000, "test_size": null } }, - "algorithm": { "estimator_params": { "C": 1.0, "kernel": "rbf" } } + "algorithm": { "estimator_params": { "C": 0.01, "kernel": "rbf" } } }, { "data": { "dataset": "twodplanes", "split_kwargs": { "ignore": true } }, @@ -78,7 +78,7 @@ "dataset": "year_prediction_msd", "split_kwargs": { "train_size": 50000, "test_size": null } }, - "algorithm": { "estimator_params": { "C": 1.0, "kernel": "rbf" } } + "algorithm": { "estimator_params": { "C": 0.01, "kernel": "rbf" } } }, { "data": { "dataset": "twodplanes", "split_kwargs": { "ignore": true } },