From 525e06c79e811913cb28060d694f8d9a7c1ede1f Mon Sep 17 00:00:00 2001 From: Dmitry Razdoburdin <> Date: Thu, 20 Nov 2025 08:17:58 -0800 Subject: [PATCH] add syntectic case for xgboost --- configs/weekly/xgboost_regression.json | 50 ++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 configs/weekly/xgboost_regression.json diff --git a/configs/weekly/xgboost_regression.json b/configs/weekly/xgboost_regression.json new file mode 100644 index 00000000..7ead5652 --- /dev/null +++ b/configs/weekly/xgboost_regression.json @@ -0,0 +1,50 @@ +{ + "INCLUDE": ["../common/xgboost.json"], + "PARAMETERS_SETS": { + "xgboost data": [ + { + "data": { + "source": "make_regression", + "generation_kwargs": [ + { + "n_samples": 2097152, "n_features": 256 + }, + { + "n_samples": 2097152, "n_features": 32 + } + ], + "split_kwargs": { "train_size": 0.5, "test_size": 0.5 } + }, + "algorithm": { + "estimator_params": [ + { + "n_estimators": 128, + "max_depth": 8 + }, + { + "n_estimators": 128, + "max_depth": 3 + }, + { + "n_estimators": 32, + "max_depth": 8 + }, + { + "n_estimators": 32, + "max_depth": 3 + } + ] + } + } + ] + }, + "TEMPLATES": { + "regression": { + "SETS": [ + "xgboost regression", + "xgboost implementations", + "xgboost data" + ] + } + } +}